/* 
 * =========================================================================
 * Campaign Pro: Ultra-Premium Hand-Crafted Minimalist Design System
 * Inspired by high-end products (Stripe, Linear, Apple) - Soft, clean & professional
 * =========================================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --lp-bg-white: #ffffff;
  --lp-bg-canvas: #fafafa;
  --lp-bg-muted: #f8fafc;
  
  --lp-color-primary: #0a66c2; /* Solid LinkedIn Blue */
  --lp-color-primary-dark: #004182;
  --lp-color-emerald: #0f9d58; /* Premium soft Green */
  --lp-color-rose: #d93025; /* Premium soft Red */
  
  --lp-text-obsidian: #090d1f; /* Elite black */
  --lp-text-charcoal: #334155; /* Soft dark grey */
  --lp-text-muted: #64748b; /* Subtle metadata */
  
  --lp-font-title: 'Outfit', sans-serif;
  --lp-font-body: 'Inter', sans-serif;
  
  --lp-border-hairline: 1px solid #e2e8f0;
  --lp-border-muted: 1px solid #f1f5f9;
  
  --lp-shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.01);
  --lp-shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.01);
  
  --lp-transition-refined: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Configuration */
.pro-lp-body {
  background-color: var(--lp-bg-white);
  color: var(--lp-text-charcoal);
  font-family: var(--lp-font-body);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pro-lp-body h1, 
.pro-lp-body h2, 
.pro-lp-body h3, 
.pro-lp-body h4, 
.pro-lp-body h5, 
.pro-lp-body h6 {
  font-family: var(--lp-font-title);
  color: var(--lp-text-obsidian);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0;
}

.pro-lp-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================================
   Top Scrolling Marquee black statistics bar
   ========================================================================= */
.top-ticker-bar {
  background: #090d1f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-ticker-bar .ticker-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: tickerLoop 32s linear infinite;
}

.top-ticker-bar span {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.top-ticker-bar i {
  color: #fbbf24;
}

@keyframes tickerLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================================
   Leakage-Free Minimalist Sticky Header
   ========================================================================= */
.pro-lp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--lp-border-hairline);
  padding: 16px 0;
  transition: var(--lp-transition-refined);
}

.pro-lp-header.shrink {
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.01);
}

.pro-lp-header .header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pro-lp-header .logo-wrapper img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.pro-lp-header .header-trust-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-text-muted);
}

.pro-lp-header .header-trust-tag i {
  color: var(--lp-color-emerald);
}

.pro-lp-header .header-cta-btn {
  background: var(--lp-text-obsidian);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  transition: var(--lp-transition-refined);
}

.pro-lp-header .header-cta-btn:hover {
  background: var(--lp-color-primary);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .pro-lp-header .header-trust-tag {
    display: none;
  }
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.pro-lp-hero {
  padding: 30px 0 60px 0;
  border-bottom: var(--lp-border-muted);
}

.pro-lp-hero .hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

/* Crown Badge */
.pro-lp-hero .badge-crown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eaf2fd;
  color: var(--lp-color-primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(10, 102, 194, 0.15);
}

.pro-lp-hero .badge-crown i {
  color: #fbbf24;
}

.pro-lp-hero .badge-limited {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  color: var(--lp-text-obsidian);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.pro-lp-hero .hero-title {
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.pro-lp-hero .hero-title span.highlight {
  color: var(--lp-color-primary);
}

.pro-lp-hero .hero-desc {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--lp-text-charcoal);
  line-height: 1.6;
  margin-bottom: 30px;
}

.pro-lp-hero .bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pro-lp-hero .bullet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--lp-text-charcoal);
}

.pro-lp-hero .bullet-list li i {
  color: var(--lp-color-emerald);
  font-size: 18px;
}

.pro-lp-hero .hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
}

.hero-btn-container {
  position: relative;
}

.hero-btn-container .offer-banner {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fde047;
  color: #000;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  z-index: 10;
  pointer-events: none;
}

.pro-lp-btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--lp-text-obsidian);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--lp-transition-refined);
}

.pro-lp-btn-main:hover {
  background: var(--lp-color-primary);
  transform: translateY(-2px);
}

.pro-lp-hero .hero-cta-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pro-lp-hero .trust-rating-box {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-text-obsidian);
}

.pro-lp-hero .trust-rating-box i {
  color: #fbbf24;
}

.pro-lp-hero .delivery-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-text-muted);
}

.pro-lp-hero .delivery-badge i {
  color: var(--lp-color-emerald);
}

/* =========================================================================
   Interactive HTML/CSS Smartphone Scorecard Pedestal
   ========================================================================= */
.phone-device-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.phone-device-wrapper .yellow-bg-accent {
  position: absolute;
  width: 320px;
  height: 320px;
  background: #fde047;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
  z-index: 1;
  top: 10%;
  right: -30px;
  pointer-events: none;
}

/* Highly realistic hardware side buttons aligned with 620px height */
.phone-device-wrapper .phone-btn-vol-up {
  position: absolute;
  left: calc(50% - 143px);
  top: 110px;
  width: 3px;
  height: 35px;
  background: #090d1f;
  border-radius: 3px 0 0 3px;
  z-index: 1;
}

.phone-device-wrapper .phone-btn-vol-down {
  position: absolute;
  left: calc(50% - 143px);
  top: 155px;
  width: 3px;
  height: 35px;
  background: #090d1f;
  border-radius: 3px 0 0 3px;
  z-index: 1;
}

.phone-device-wrapper .phone-btn-power {
  position: absolute;
  right: calc(50% - 143px);
  top: 125px;
  width: 3px;
  height: 50px;
  background: #090d1f;
  border-radius: 0 3px 3px 0;
  z-index: 1;
}

.phone-device-mockup {
  width: 280px;
  height: 540px;
  background: #090d1f;
  border: 10px solid #090d1f;
  border-radius: 34px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--lp-transition-refined);
}

.phone-device-mockup:hover {
  box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.2), 0 35px 70px -10px rgba(0, 0, 0, 0.3);
}

/* Remove default notch */
.phone-device-mockup::before {
  content: none;
}

/* Realistic Glossy Screen Glare reflection overlay */
.phone-device-mockup::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.07) 32%, rgba(255, 255, 255, 0) 32.1%, rgba(255, 255, 255, 0) 100%);
  z-index: 100;
  pointer-events: none;
}

/* Realistic ear speaker bezel grille */
.phone-ear-speaker {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: #1e293b;
  border-radius: 2px;
  z-index: 20;
}

/* Phone Status Bar styling */
.phone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 8px 18px;
  background: #ffffff;
  font-size: 10px;
  font-weight: 700;
  color: #090d1f;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #f1f5f9;
  height: 38px;
  box-sizing: border-box;
}

.phone-status-bar .phone-dynamic-island {
  width: 76px;
  height: 18px;
  background: #090d1f;
  border-radius: 12px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Phone scrollable screen styling */
.phone-screen {
  flex: 1;
  background: #f3f4f6;
  overflow: hidden;
  padding: 14px 12px 40px 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-screen::-webkit-scrollbar {
  display: none; /* Hide Chrome/Safari scrollbar */
}

.phone-scroll-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: phoneAutoscroll 22s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform;
}

.phone-device-mockup:hover .phone-scroll-content {
  animation-play-state: paused;
}

@keyframes phoneAutoscroll {
  0% {
    transform: translateY(0);
  }
  8% {
    transform: translateY(0);
  }
  48% {
    transform: translateY(-52%);
  }
  58% {
    transform: translateY(-52%);
  }
  92% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

/* Phone Home Indicator styling */
.phone-home-indicator {
  width: 100px;
  height: 4px;
  background: #090d1f;
  border-radius: 2px;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0.9;
}

/* Browser Header bar */
.app-browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 10px;
  color: #64748b;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.browser-address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #374151;
}

.browser-address i {
  color: #10b981;
}

/* Premium LinkedIn profile mockup card styling */
.profile-header-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.profile-header-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #e5e7eb;
}

.profile-header-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.profile-header-name {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  font-family: var(--lp-font-title);
}

.profile-header-title {
  font-size: 10px;
  color: #4b5563;
  margin: 0;
  font-weight: 500;
}

.profile-header-link {
  font-size: 9px;
  color: #2563eb;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  margin-top: 1px;
}

/* Circular Score Ring Widget */
.score-ring-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e5e7eb;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.score-ring-wrapper {
  position: relative;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.radial-bg {
  fill: none;
  stroke: #f3f4f6;
  stroke-width: 7;
}

.radial-progress {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  animation: strokeLoop 1.5s ease-in-out forwards;
}

.radial-progress-average {
  stroke: #f59e0b;
  stroke-dashoffset: calc(251.2 - (251.2 * 70) / 100);
}

@keyframes strokeLoop {
  from {
    stroke-dashoffset: 251.2;
  }
}

.score-ring-inner {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score-ring-num {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  font-family: var(--lp-font-title);
}

.score-ring-lbl {
  font-size: 8.5px;
  font-weight: 700;
  color: #f59e0b;
  text-transform: uppercase;
  margin-top: -2px;
}

.score-ring-caption {
  font-size: 10.5px;
  color: #4b5563;
  margin: 10px 0 12px 0;
  font-weight: 500;
  line-height: 1.4;
}

.score-ring-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s;
}

.score-ring-btn:hover {
  background: #1d4ed8;
}

/* Progress rows section */
.score-rows-list {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.score-row-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.score-row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.score-row-title {
  font-weight: 700;
  color: #1f2937;
}

.score-row-val {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.green-text {
  color: #10b981;
}

.yellow-text {
  color: #f59e0b;
}

.red-text {
  color: #ef4444;
}

.score-row-val i {
  font-size: 8px;
  color: #9ca3af;
}

.score-row-bar {
  width: 100%;
  height: 5px;
  background: #f3f4f6;
  border-radius: 999px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: 999px;
}

.score-bar-fill.bg-green {
  background: #10b981;
}

.score-bar-fill.bg-yellow {
  background: #f59e0b;
}

.score-bar-fill.bg-red {
  background: #ef4444;
}

/* Detailed Feedback Cards */
.detailed-feedback-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detailed-feedback-title {
  font-size: 11px;
  font-weight: 800;
  color: #111827;
  margin: 4px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feedback-detail-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.feedback-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feedback-card-category {
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.bg-green-light {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.bg-red-light {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.bg-yellow-light {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.category-name {
  font-size: 11px;
  font-weight: 700;
  color: #111827;
}

.feedback-pill {
  font-size: 8.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
}

.pill-green {
  color: #047857;
  background: #d1fae5;
}

.pill-red {
  color: #b91c1c;
  background: #fee2e2;
}

.pill-yellow {
  color: #b45309;
  background: #fef3c7;
}

.feedback-card-text {
  font-size: 10px;
  line-height: 1.45;
  color: #4b5563;
  margin: 0;
  font-weight: 400;
}

/* Phone Report Call To Action banner */
.phone-report-cta {
  background: #111827;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  color: #ffffff;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(17, 24, 39, 0.1);
}

.phone-report-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #2563eb;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none !important;
  padding: 10px 14px;
  border-radius: 6px;
  width: 100%;
  transition: background 0.2s ease;
}

.phone-report-btn:hover {
  background: #1d4ed8;
}

.phone-report-cta p {
  font-size: 8px;
  color: #9ca3af;
  margin: 6px 0 0 0;
  font-weight: 500;
}

@media (max-width: 991px) {
  .pro-lp-hero {
    padding: 60px 0;
  }
  .pro-lp-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .pro-lp-hero .badge-crown,
  .pro-lp-hero .badge-limited,
  .pro-lp-hero .bullet-list {
    margin-left: auto;
    margin-right: auto;
  }
  .pro-lp-hero .bullet-list {
    align-items: center;
  }
  .pro-lp-hero .hero-cta-group {
    margin: 0 auto;
  }
  .pro-lp-hero .hero-cta-trust {
    justify-content: center;
  }
}

/* =========================================================================
   Premium sliding Profile Showcase Marquee
   ========================================================================= */
.pro-lp-marquee {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  border-bottom: var(--lp-border-hairline);
  background-color: #fbfbfb;
}

.pro-lp-marquee::before,
.pro-lp-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 5;
  pointer-events: none;
}

.pro-lp-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fbfbfb 0%, rgba(251, 251, 251, 0) 100%);
}

.pro-lp-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fbfbfb 0%, rgba(251, 251, 251, 0) 100%);
}

.pro-lp-marquee .marquee-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.pro-lp-marquee .marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeLoop 35s linear infinite;
}

.pro-lp-marquee .marquee-track:hover {
  animation-play-state: paused;
}

.pro-lp-marquee .marquee-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--lp-bg-white);
  border: var(--lp-border-hairline);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--lp-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--lp-transition-refined);
}

.pro-lp-marquee .marquee-card:hover {
  border-color: var(--lp-color-primary);
  box-shadow: var(--lp-shadow-hover);
  transform: translateY(-2px);
}

.pro-lp-marquee .marquee-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pro-lp-marquee .marquee-card-header .score-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--lp-color-emerald);
  background: rgba(15, 157, 88, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
}

.pro-lp-marquee .marquee-card-header .category-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--lp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pro-lp-marquee .marquee-card-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
}

.pro-lp-marquee .marquee-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.pro-lp-marquee .profile-name h5 {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 1px;
  color: var(--lp-text-obsidian);
}

.pro-lp-marquee .profile-name p {
  font-size: 11.5px;
  color: var(--lp-text-muted);
  margin: 0;
}

.pro-lp-marquee .marquee-card-headline {
  font-size: 12px;
  line-height: 1.5;
  color: var(--lp-text-charcoal);
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 36px;
}

@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================================================================
   UX Recruiter Comparison Section
   ========================================================================= */
.pro-lp-perception {
  padding: 100px 0;
  background-color: var(--lp-bg-canvas);
  border-bottom: var(--lp-border-hairline);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px auto;
}

.section-tag {
  color: var(--lp-color-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.section-head h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--lp-text-charcoal);
  font-size: 15.5px;
}

.pro-lp-perception .comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.pro-lp-perception .comp-card {
  background: var(--lp-bg-white);
  border: var(--lp-border-hairline);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--lp-shadow-soft);
  transition: var(--lp-transition-refined);
}

.pro-lp-perception .comp-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-hover);
}

.pro-lp-perception .comp-card.bad {
  border-top: 3px solid var(--lp-color-rose);
}

.pro-lp-perception .comp-card.good {
  border-top: 3px solid var(--lp-color-primary);
}

.pro-lp-perception .card-badge {
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.pro-lp-perception .bad .card-badge {
  background: #fdf2f2;
  color: var(--lp-color-rose);
}

.pro-lp-perception .good .card-badge {
  background: #eaf2fd;
  color: var(--lp-color-primary);
}

/* Mock LinkedIn Layout */
.pro-lp-perception .mock-profile-box {
  background: #fafafa;
  border: var(--lp-border-hairline);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.pro-lp-perception .mock-header-part {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 14px;
}

.pro-lp-perception .mock-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--lp-text-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.pro-lp-perception .good .mock-avatar {
  background: var(--lp-color-primary);
  color: #fff;
}

.pro-lp-perception .mock-name-title h4 {
  font-size: 15px;
  margin-bottom: 1px;
  font-weight: 700;
}

.pro-lp-perception .mock-name-title p {
  font-size: 12px;
  color: var(--lp-text-muted);
  margin: 0;
}

.pro-lp-perception .mock-headline-copy {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
  color: var(--lp-text-charcoal);
}

.pro-lp-perception .good .mock-headline-copy {
  font-weight: 600;
}

.pro-lp-perception .mock-action-tags {
  display: flex;
  gap: 8px;
}

.pro-lp-perception .mock-tag {
  font-size: 11px;
  background: #f1f5f9;
  color: var(--lp-text-muted);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.pro-lp-perception .good .mock-tag {
  background: #eaf2fd;
  color: var(--lp-color-primary);
}

.pro-lp-perception .comp-verdict {
  font-size: 13.5px;
  line-height: 1.55;
}

.pro-lp-perception .comp-verdict strong {
  display: block;
  font-size: 14.5px;
  margin-bottom: 4px;
}

.pro-lp-perception .bad .comp-verdict strong {
  color: var(--lp-color-rose);
}

.pro-lp-perception .good .comp-verdict strong {
  color: var(--lp-color-primary);
}

@media (max-width: 768px) {
  .pro-lp-perception .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================================
   The 4 Core Audit Pillars
   ========================================================================= */
.pro-lp-pillars {
  padding: 100px 0;
  border-bottom: var(--lp-border-hairline);
}

.pro-lp-pillars .pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pro-lp-pillars .pillar-card {
  background: var(--lp-bg-white);
  border: var(--lp-border-hairline);
  border-radius: 12px;
  padding: 26px 20px;
  box-shadow: var(--lp-shadow-soft);
  transition: var(--lp-transition-refined);
}

.pro-lp-pillars .pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-hover);
  border-color: var(--lp-text-obsidian);
}

.pro-lp-pillars .pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f1f5f9;
  color: var(--lp-text-obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 18px;
}

.pro-lp-pillars .pillar-card:hover .pillar-icon {
  background: var(--lp-color-primary);
  color: #fff;
}

.pro-lp-pillars .pillar-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pro-lp-pillars .pillar-desc {
  font-size: 13px;
  color: var(--lp-text-charcoal);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .pro-lp-pillars .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .pro-lp-pillars .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================================
   Delivery Pathway Stepper
   ========================================================================= */
.pro-lp-steps {
  padding: 100px 0;
  background-color: var(--lp-bg-canvas);
  border-bottom: var(--lp-border-hairline);
}

.pro-lp-steps .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.pro-lp-steps .steps-grid::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 20%;
  width: 60%;
  height: 1px;
  border-top: 1.5px dashed #cbd5e1;
  z-index: 1;
}

.pro-lp-steps .step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.pro-lp-steps .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--lp-bg-white);
  border: var(--lp-border-hairline);
  color: var(--lp-text-obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px auto;
  box-shadow: var(--lp-shadow-soft);
  transition: var(--lp-transition-refined);
}

.pro-lp-steps .step-card:hover .step-number {
  color: #fff;
  background: var(--lp-color-primary);
  border-color: var(--lp-color-primary);
  transform: translateY(-2px);
}

.pro-lp-steps .step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.pro-lp-steps .step-desc {
  font-size: 13px;
  color: var(--lp-text-charcoal);
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pro-lp-steps .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pro-lp-steps .steps-grid::after {
    display: none;
  }
}

/* =========================================================================
   FAQ Section
   ========================================================================= */
.pro-lp-faq {
  padding: 100px 0;
  border-bottom: var(--lp-border-hairline);
}

.pro-lp-faq .faq-max-width {
  max-width: 720px;
  margin: 0 auto;
}

.pro-lp-faq .faq-wrapper {
  display: flex;
  flex-direction: column;
}

.pro-lp-faq .faq-item {
  border-bottom: var(--lp-border-hairline);
  transition: var(--lp-transition-refined);
}

.pro-lp-faq .faq-header {
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  user-select: none;
}

.pro-lp-faq .faq-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-text-obsidian);
  margin: 0;
  transition: var(--lp-transition-refined);
}

.pro-lp-faq .faq-item.active .faq-header h4 {
  color: var(--lp-color-primary);
}

.pro-lp-faq .faq-icon {
  font-size: 12px;
  color: var(--lp-text-muted);
  transition: transform 0.3s ease;
}

.pro-lp-faq .faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--lp-color-primary);
}

.pro-lp-faq .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pro-lp-faq .faq-content p {
  font-size: 13.5px;
  color: var(--lp-text-charcoal);
  line-height: 1.6;
  margin: 0 0 24px 0;
}

/* =========================================================================
   Grand Finale: Elegant Slate Conversion CTA Box
   ========================================================================= */
.pro-lp-final-cta {
  padding: 100px 0 120px 0;
}

.pro-lp-final-cta .cta-box-glow {
  background: var(--lp-text-obsidian);
  color: #fff;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
}

.pro-lp-final-cta .cta-heading {
  font-size: clamp(26px, 3.8vw, 38px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 800;
}

.pro-lp-final-cta .cta-tagline {
  color: #94a3b8;
  font-size: clamp(14px, 1.8vw, 16px);
  margin-bottom: 35px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.pro-lp-final-cta .pricing-showcase {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 24px;
  margin-bottom: 35px;
}

.pro-lp-final-cta .normal-price {
  font-size: 14.5px;
  color: #64748b;
  text-decoration: line-through;
  font-weight: 500;
}

.pro-lp-final-cta .offer-price {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  font-family: var(--lp-font-title);
}

.pro-lp-final-cta .discount-tag {
  font-size: 11px;
  font-weight: 700;
  background: var(--lp-color-emerald);
  color: #fff;
  padding: 3px 6px;
  border-radius: 4px;
}

.pro-lp-final-cta .cta-btn-wrapper {
  max-width: 360px;
  margin: 0 auto 20px auto;
}

.pro-lp-final-cta .pro-lp-btn-main {
  background: var(--lp-bg-white);
  color: var(--lp-text-obsidian);
}

.pro-lp-final-cta .pro-lp-btn-main:hover {
  background: var(--lp-color-primary);
  color: #fff;
}

.pro-lp-final-cta .guarantee-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
}

.pro-lp-final-cta .guarantee-banner i {
  color: var(--lp-color-emerald);
}

.pro-lp-final-cta .disclaimer-text {
  font-size: 11px;
  color: #475569;
  line-height: 1.5;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .pro-lp-final-cta .pricing-showcase {
    flex-direction: column;
    gap: 4px;
    padding: 12px 20px;
  }
}

/* =========================================================================
   Trust Footer (Minimalist)
   ========================================================================= */
.pro-lp-footer {
  background: #fafafa;
  border-top: var(--lp-border-hairline);
  padding: 40px 0;
}

.pro-lp-footer .footer-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pro-lp-footer .footer-logo img {
  height: 36px;
  width: auto;
  opacity: 0.8;
}

.pro-lp-footer .footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pro-lp-footer .footer-links a {
  font-size: 12px;
  color: var(--lp-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: var(--lp-transition-refined);
}

.pro-lp-footer .footer-links a:hover {
  color: var(--lp-text-obsidian);
}

.pro-lp-footer .footer-copy {
  font-size: 12px;
  color: var(--lp-text-muted);
  margin: 0;
}

@media (max-width: 600px) {
  .pro-lp-footer .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }
}

/* =========================================================================
   Centered Hero Design and Mobile Layout Enhancements
   ========================================================================= */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px 60px;
  align-items: center;
  width: 100%;
}

.hero-left-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Tightly packs details text and CTA button vertically */
  align-items: flex-start;
  width: 100%;
}

.hero-details-col {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.hero-details-col .hero-title {
  font-size: clamp(19px, 2.0vw, 24px);
  font-weight: 800;
  line-height: 1.22;
  color: var(--lp-text-obsidian);
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.hero-details-col .hero-desc {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 550;
  color: var(--lp-text-charcoal);
  margin-bottom: 16px;
  line-height: 1.45;
}

.hero-details-col .badge-crown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eaf2fd;
  color: var(--lp-color-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 750;
  border: 1px solid rgba(10, 102, 194, 0.18);
  margin-bottom: 10px;
}

.hero-details-col .badge-crown i {
  color: #fbbf24;
}

/* Side-by-side Visual Columns in Right Area */
.hero-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-visual-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
}

/* Pointing Man Column with Custom Yellow Capsule Background */
.hero-man-col {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.man-capsule-bg {
  position: absolute;
  width: 150px;
  height: 270px;
  background: #fbbf24; /* Rich golden yellow capsule */
  border-radius: 120px;
  z-index: -1;
  top: 52%;
  left: 48%;
  transform: translate(-50%, -50%) rotate(-4deg);
  opacity: 0.95;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.25);
}

.pointing-man-img {
  width: 250px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}

.hero-phone-col {
  flex: 0 0 auto;
}

/* Left CTA block under Headings on Desktop */
.hero-cta-block {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 460px;
  width: 100%;
}

.hero-cta-block .hero-btn-container {
  width: 100%;
  position: relative;
}

.hero-cta-block .pro-lp-btn-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: clamp(12px, 1.1vw, 14px);
  padding: 11px 18px;
  background: var(--lp-color-primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 18px rgba(10, 102, 194, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cta-block .pro-lp-btn-main:hover {
  background: #004182;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 102, 194, 0.32);
}

.hero-cta-block .cta-disclaimer {
  font-size: 12.5px;
  color: var(--lp-text-charcoal);
  font-weight: 700;
  margin-top: 2px;
  margin-bottom: 2px;
}

.hero-cta-block .cta-subtext {
  font-size: 13.5px;
  color: var(--lp-text-muted);
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}

.hero-cta-block .hero-cta-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 6px;
}

/* =========================================================================
   Responsive Grid & Flex Overrides for Mobile Viewports
   ========================================================================= */
@media (max-width: 991px) {
  .hero-split-grid {
    gap: 20px 30px;
  }
}

@media (max-width: 768px) {
  .hero-split-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .hero-left-wrapper {
    display: contents; /* Unwraps details and CTA so grid order properties apply flatly on mobile */
  }

  .hero-details-col {
    order: 1;
    align-items: center;
    text-align: center;
  }

  .hero-details-col .hero-title {
    margin-bottom: 10px;
  }

  .hero-details-col .hero-desc {
    margin-bottom: 14px;
  }

  .hero-visual-col {
    order: 2;
  }

  .hero-cta-block {
    order: 3;
    align-items: center;
    text-align: center;
    max-width: 440px;
  }

  .hero-cta-block .hero-cta-trust {
    justify-content: center;
  }

  .hero-visual-row {
    gap: 15px;
  }

  .pointing-man-img {
    width: 170px;
  }

  .man-capsule-bg {
    width: 100px;
    height: 185px;
    border-radius: 80px;
  }

  .phone-device-mockup {
    width: 185px;
    height: 355px;
    border-width: 7px;
    border-radius: 22px;
  }

  .phone-status-bar {
    height: 28px;
    padding: 6px 12px;
    font-size: 8px;
  }

  .phone-status-bar .phone-dynamic-island {
    width: 50px;
    height: 12px;
    top: 5px;
  }

  .app-browser-bar {
    padding: 5px 8px;
    font-size: 7.5px;
  }

  .phone-home-indicator {
    width: 60px;
    height: 3px;
    bottom: 4px;
  }

  .phone-device-wrapper .phone-btn-vol-up,
  .phone-device-wrapper .phone-btn-vol-down,
  .phone-device-wrapper .phone-btn-power {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-visual-row {
    gap: 8px;
  }

  .pointing-man-img {
    width: 135px;
  }

  .man-capsule-bg {
    width: 80px;
    height: 150px;
    border-radius: 60px;
  }

  .phone-device-mockup {
    width: 145px;
    height: 280px;
    border-width: 5px;
    border-radius: 18px;
  }

  .phone-status-bar {
    height: 24px;
    padding: 4px 8px;
    font-size: 7px;
  }

  .phone-status-bar .phone-dynamic-island {
    width: 40px;
    height: 10px;
    top: 4px;
  }

  .app-browser-bar {
    padding: 4px 6px;
    font-size: 6.5px;
    gap: 4px;
  }

  .profile-header-card {
    padding: 8px;
    gap: 8px;
    border-radius: 8px;
  }

  .profile-header-img {
    width: 24px;
    height: 24px;
  }

  .profile-header-name {
    font-size: 9px;
  }

  .profile-header-title {
    font-size: 7px;
  }

  .profile-header-link {
    font-size: 6px;
  }

  .score-ring-card {
    padding: 8px;
    border-radius: 8px;
  }

  .score-ring-wrapper {
    width: 60px;
    height: 60px;
  }

  .score-ring-num {
    font-size: 16px;
  }

  .score-ring-lbl {
    font-size: 7px;
  }

  .score-ring-caption {
    font-size: 7.5px;
  }

  .score-ring-btn {
    font-size: 7.5px;
    padding: 4px 8px;
    border-radius: 4px;
  }

  .score-rows-list {
    gap: 8px;
  }

  .score-row-item {
    gap: 4px;
  }

  .score-row-title {
    font-size: 8px;
  }

  .score-row-val {
    font-size: 8px;
  }

  .score-row-bar {
    height: 4px;
  }

  .detailed-feedback-title {
    font-size: 9px;
    margin-bottom: 6px;
  }

  .feedback-detail-card {
    padding: 8px;
    border-radius: 8px;
  }

  .feedback-card-category {
    gap: 6px;
  }

  .category-icon {
    width: 16px;
    height: 16px;
    font-size: 8px;
  }

  .category-name {
    font-size: 8px;
  }

  .feedback-pill {
    font-size: 7.5px;
    padding: 2px 6px;
  }

  .feedback-card-text {
    font-size: 7.5px;
    line-height: 1.4;
  }

  .phone-report-cta {
    padding: 10px;
    border-radius: 8px;
  }

  .phone-report-btn {
    padding: 8px 12px;
    font-size: 8px;
    border-radius: 6px;
  }

  .phone-report-cta p {
    font-size: 7px;
    line-height: 1.4;
  }
}
