/*
Theme Name: Progress Map Pro
Theme URI: https://progressmappro.com
Author: CodeSpacing
Author URI: https://codespacing.com
Description: Landing page theme for Progress Map Pro — The Most Powerful Map & Directory Plugin for WordPress.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: progress-map-pro
*/

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1a2744;
  --navy-light: #24355a;
  --navy-lighter: #2d4272;
  --navy-dark: #111d33;
  --gold: #f5a623;
  --gold-hover: #e09513;
  --gold-light: rgba(245, 166, 35, 0.12);
  --gold-glow: rgba(245, 166, 35, 0.3);
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --success: #22c55e;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.16);
  --shadow-gold: 0 8px 30px rgba(245,166,35,0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
  50% { box-shadow: 0 0 0 12px rgba(245,166,35,0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes orbit {
  0% { transform: rotate(0deg) translateX(180px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}

@keyframes orbit-reverse {
  0% { transform: rotate(0deg) translateX(140px) rotate(0deg); }
  100% { transform: rotate(-360deg) translateX(140px) rotate(360deg); }
}

@keyframes gridFloat {
  0% { transform: translateY(0) scale(1); opacity: 0.15; }
  50% { transform: translateY(-20px) scale(1.05); opacity: 0.25; }
  100% { transform: translateY(0) scale(1); opacity: 0.15; }
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ripple {
  0% { transform: scale(0); opacity: 0.5; }
  100% { transform: scale(4); opacity: 0; }
}

@keyframes checkBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes priceShine {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(200%) rotate(25deg); }
}

@keyframes confettiFall {
  0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ─── LAYOUT ─── */
.pmp-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAVIGATION ─── */
.pmp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.pmp-nav.scrolled {
  background: rgba(26, 39, 68, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 12px 0;
}

.pmp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.pmp-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.pmp-nav-logo-img {
  height: 53px;
  width: auto;
  object-fit: contain;
}

.pmp-nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold) 0%, #e09513 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245,166,35,0.3);
}

.pmp-nav-logo-icon svg {
  width: 20px;
  height: 20px;
}

.pmp-nav-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.pmp-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.pmp-nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.pmp-nav-links a:hover {
  color: var(--white);
}

.pmp-nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #e09513 100%);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 14px rgba(245,166,35,0.3);
  transition: all 0.3s ease !important;
}

.pmp-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}

.pmp-nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.pmp-nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ─── HERO ─── */
.pmp-hero {
  background: var(--navy);
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

.pmp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,166,35,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(100,140,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(245,166,35,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.pmp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.pmp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}

.pmp-hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(245,166,35,0.12);
  top: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite;
}

.pmp-hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(100,140,255,0.08);
  bottom: -50px;
  right: -50px;
  animation: float 12s ease-in-out infinite 2s;
}

.pmp-hero-orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(245,166,35,0.08);
  top: 50%;
  right: 20%;
  animation: float 8s ease-in-out infinite 1s;
}

.pmp-hero-dots {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(245,166,35,0.3) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.3;
}

.pmp-hero-dots-1 {
  top: 80px;
  right: 60px;
  animation: float 7s ease-in-out infinite;
}

.pmp-hero-dots-2 {
  bottom: 100px;
  left: 40px;
  animation: float 9s ease-in-out infinite 1.5s;
}

.pmp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pmp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 32px;
  animation: badgePulse 3s ease-in-out infinite;
}

.pmp-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.pmp-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.pmp-hero-title span {
  background: linear-gradient(135deg, var(--gold) 0%, #ffd700 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.pmp-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.pmp-hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 0.8s ease-out 0.45s both;
}

.pmp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, #e09513 100%);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.pmp-hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.pmp-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245,166,35,0.35);
}

.pmp-hero-cta:hover::before {
  left: 100%;
}

.pmp-hero-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pmp-hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.pmp-hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.pmp-hero-cta-secondary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pmp-hero-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.pmp-hero-guarantee svg {
  width: 16px;
  height: 16px;
  color: var(--success);
}

.pmp-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.pmp-hero-stat {
  text-align: center;
}

.pmp-hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.pmp-hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ─── FEATURES ─── */
.pmp-features {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
}

.pmp-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.pmp-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.pmp-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.pmp-section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.pmp-section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

.pmp-features-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.pmp-features-demo-link:hover {
  color: #e09513;
  gap: 12px;
}

.pmp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pmp-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.pmp-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #ffd700, var(--gold));
  background-size: 200% auto;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pmp-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(245,166,35,0.2);
}

.pmp-feature-card:hover::before {
  transform: scaleX(1);
  animation: shimmer 2s linear infinite;
}

.pmp-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.pmp-feature-card:hover .pmp-feature-icon {
  background: linear-gradient(135deg, var(--gold) 0%, #e09513 100%);
  transform: scale(1.1);
}

.pmp-feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
  transition: color 0.3s ease;
}

.pmp-feature-card:hover .pmp-feature-icon svg {
  color: var(--white);
}

.pmp-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pmp-feature-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.pmp-feature-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.pmp-feature-link:hover {
  color: #e09513;
}

/* ─── PRICING ─── */
.pmp-pricing {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.pmp-pricing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.pmp-pricing-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,39,68,0.3);
}

.pmp-pricing-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 20%, rgba(245,166,35,0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(100,140,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.pmp-pricing-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(135deg, var(--gold), transparent 30%, transparent 70%, var(--gold));
  opacity: 0.3;
  z-index: -1;
  animation: gradientShift 6s ease infinite;
  background-size: 200% 200%;
}

.pmp-pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  animation: badgePulse 3s ease-in-out infinite;
}

.pmp-pricing-badge svg {
  width: 14px;
  height: 14px;
}

.pmp-pricing-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

.pmp-pricing-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.pmp-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.pmp-pricing-price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.pmp-pricing-price-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.pmp-pricing-price-number::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: priceShine 4s ease-in-out infinite;
}

.pmp-pricing-price-period {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.pmp-pricing-savings {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.pmp-pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.pmp-pricing-features {
  list-style: none;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.pmp-pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pmp-pricing-feature:last-child {
  border-bottom: none;
}

.pmp-pricing-feature-icon {
  width: 22px;
  height: 22px;
  background: rgba(34,197,94,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pmp-pricing-feature-icon svg {
  width: 12px;
  height: 12px;
  color: var(--success);
}

.pmp-pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #e09513 100%);
  color: var(--white);
  padding: 18px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(245,166,35,0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.pmp-pricing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.pmp-pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245,166,35,0.4);
}

.pmp-pricing-cta:hover::before {
  left: 100%;
}

.pmp-pricing-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pmp-pricing-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 2;
}

.pmp-pricing-note svg {
  width: 14px;
  height: 14px;
  vertical-align: text-bottom;
  margin-right: 4px;
  color: rgba(255,255,255,0.3);
}

/* ─── FAQ ─── */
.pmp-faq {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
}

.pmp-faq-grid {
  max-width: 760px;
  margin: 0 auto;
}

.pmp-faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.3s ease;
}

.pmp-faq-item:hover {
  border-color: rgba(245,166,35,0.2);
  box-shadow: var(--shadow-md);
}

.pmp-faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s ease;
}

.pmp-faq-toggle:hover {
  background: rgba(245,166,35,0.02);
}

.pmp-faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding-right: 16px;
}

.pmp-faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pmp-faq-icon svg {
  width: 12px;
  height: 12px;
  color: var(--gray-500);
  transition: all 0.3s ease;
}

.pmp-faq-item.active .pmp-faq-icon {
  background: var(--gold-light);
  transform: rotate(45deg);
}

.pmp-faq-item.active .pmp-faq-icon svg {
  color: var(--gold);
}

.pmp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.4s ease;
}

.pmp-faq-item.active .pmp-faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.pmp-faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.pmp-faq-answer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.pmp-faq-answer a:hover {
  text-decoration: underline;
}

/* ─── CTA BANNER ─── */
.pmp-cta-banner {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pmp-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245,166,35,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(100,140,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.pmp-cta-banner-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.pmp-cta-banner-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.pmp-cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, #e09513 100%);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.pmp-cta-banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245,166,35,0.35);
}

.pmp-cta-banner-btn svg {
  width: 18px;
  height: 18px;
}

/* ─── FOOTER ─── */
.pmp-footer {
  background: var(--navy-dark);
  padding: 32px 0;
  text-align: center;
}

.pmp-footer-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ─── BACK TO TOP ─── */
.pmp-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pmp-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pmp-back-to-top:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.pmp-back-to-top svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .pmp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pmp-nav-links {
    display: none;
  }

  .pmp-nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 39, 68, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }

  .pmp-nav-mobile-toggle {
    display: block;
  }

  .pmp-hero {
    padding: 140px 0 100px;
  }

  .pmp-hero-stats {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .pmp-features-grid {
    grid-template-columns: 1fr;
  }

  .pmp-pricing-card {
    padding: 36px 24px;
  }

  .pmp-pricing-price-number {
    font-size: 3rem;
  }

  .pmp-hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .pmp-hero-stat {
    flex: 1 1 40%;
  }

  .pmp-hero-cta {
    padding: 16px 28px;
    font-size: 1rem;
  }

  .pmp-hero-cta-secondary {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .pmp-section-header {
    margin-bottom: 48px;
  }

  .pmp-features, .pmp-pricing, .pmp-faq, .pmp-cta-banner {
    padding: 72px 0;
  }
}
