/* ============================================
   GHOST WORKFORCE — Landing Page v2
   Premium Dark Gold Luxury Design
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-dark: #0a0a0a;
  --bg-deep: #0d0d0d;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --border-glass: rgba(255, 255, 255, 0.08);
  --gold: #C9A84C;
  --gold-light: #DDB95E;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --gold-glow-alt: rgba(201, 168, 76, 0.1);
  --text-primary: #f0f0f0;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.35);
  --gradient-main: linear-gradient(135deg, #C9A84C, #DDB95E);
  --gradient-bg: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Background handled by Floating Lines Canvas (#floating-lines in JS) --- */

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1, h2 {
  font-family: var(--font-display);
}
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
section {
  padding: 120px 0;
  position: relative;
}

/* --- Glass Card --- */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

/* --- 3D Card Effect --- */
.card-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.5s ease;
}
.card-3d-inner {
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}
.card-3d:hover .card-3d-inner {
  transform: rotateY(-2deg) rotateX(2deg) translateZ(10px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient-main);
  color: #0a0a0a;
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.3), 0 0 60px rgba(201, 168, 76, 0.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.45), 0 0 80px rgba(221, 185, 94, 0.2);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}
.btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}
.nav-logo img {
  width: 36px;
  height: 36px;
}
.nav-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--text-primary);
}
.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
  color: #0a0a0a !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  position: relative;
}
.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 60px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease-out;
}
.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(201, 168, 76, 0); }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Hero 3D Floating elements */
.hero-3d-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  perspective: 1200px;
  z-index: 1;
}
.floating-shape {
  position: absolute;
  border-radius: var(--radius);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(6px);
  animation: float3d 8s ease-in-out infinite;
}
.floating-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(221,185,94,0.1));
  top: 20%;
  left: 8%;
  animation-delay: 0s;
  transform: rotate(15deg);
}
.floating-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(221,185,94,0.08), rgba(201,168,76,0.08));
  top: 15%;
  right: 10%;
  animation-delay: -2s;
  border-radius: 50%;
}
.floating-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), transparent);
  bottom: 25%;
  left: 12%;
  animation-delay: -4s;
  transform: rotate(-20deg);
}
.floating-shape:nth-child(4) {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(221,185,94,0.1), transparent);
  bottom: 20%;
  right: 8%;
  animation-delay: -6s;
  border-radius: 24px;
  transform: rotate(30deg);
}
.floating-shape:nth-child(5) {
  width: 50px;
  height: 50px;
  background: rgba(201,168,76,0.06);
  top: 45%;
  left: 5%;
  animation-delay: -1s;
  border-radius: 12px;
}
.floating-shape:nth-child(6) {
  width: 70px;
  height: 70px;
  background: rgba(221,185,94,0.06);
  top: 50%;
  right: 5%;
  animation-delay: -3s;
  border-radius: 50%;
}

@keyframes float3d {
  0%, 100% { transform: translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg); }
  25% { transform: translateY(-20px) translateZ(30px) rotateX(5deg) rotateY(-5deg); }
  50% { transform: translateY(-10px) translateZ(15px) rotateX(-3deg) rotateY(3deg); }
  75% { transform: translateY(-25px) translateZ(20px) rotateX(4deg) rotateY(-4deg); }
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 4rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================
   LOGOS / SOCIAL PROOF BAR
   ============================================ */
.logos-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  text-align: center;
  overflow: hidden;
}
.logos-bar p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.logos-track {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.35;
}
.logos-track span {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  white-space: nowrap;
}

/* ============================================
   VIDEO DEMO
   ============================================ */
.video-section {
  padding: 120px 0;
}
.video-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.video-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.video-section p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  perspective: 1200px;
}
.video-frame {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  transform: rotateX(2deg);
  transition: transform 0.6s ease;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(201, 168, 76, 0.06),
    0 0 120px rgba(201, 168, 76, 0.03);
}
.video-frame:hover {
  transform: rotateX(0deg);
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Placeholder overlay */
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), rgba(221,185,94,0.05));
  cursor: pointer;
  transition: background 0.4s;
}
.video-placeholder:hover {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(221,185,94,0.1));
}
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 1rem;
}
.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.6);
}
.video-play-btn svg {
  width: 32px;
  height: 32px;
  color: #0a0a0a;
  margin-left: 4px;
}
.video-placeholder span {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}
/* Glow behind video */
.video-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06), rgba(221,185,94,0.04), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

/* ============================================
   ROI CALCULATOR
   ============================================ */
.roi-section {
  padding: 120px 0;
}
.roi-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.roi-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.roi-section p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}
.roi-calculator {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.roi-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06), rgba(221,185,94,0.04), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}
.roi-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}
.roi-inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.roi-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.roi-field label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.roi-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  outline: none;
  cursor: pointer;
}
.roi-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #DDB95E);
  box-shadow: 0 0 15px rgba(201,168,76,0.5);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.roi-field input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.roi-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  text-align: right;
}
.roi-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), rgba(221,185,94,0.3), transparent);
  margin: 2.5rem 0;
}
.roi-results {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.roi-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.roi-result-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 55%;
}
.roi-result-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}
.roi-result-number span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 400;
}
.roi-result-number.roi-green {
  color: #00ff87;
  text-shadow: 0 0 20px rgba(0,255,135,0.3);
}
.roi-result-number.roi-red {
  color: #ff4466;
  text-shadow: 0 0 20px rgba(255,68,102,0.3);
}
.roi-highlight {
  background: rgba(0,255,135,0.04);
  border: 1px solid rgba(0,255,135,0.1);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}
.roi-lost {
  opacity: 0.8;
}
.roi-cta {
  display: block;
  text-align: center;
  margin-top: 2.5rem;
  padding: 16px 40px;
  background: linear-gradient(135deg, #C9A84C 0%, #DDB95E 100%);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(201,168,76,0.3), 0 0 60px rgba(201,168,76,0.1);
  transition: all 0.3s ease;
}
.roi-cta:hover {
  box-shadow: 0 0 40px rgba(201,168,76,0.5), 0 0 80px rgba(221,185,94,0.2);
  transform: translateY(-2px);
  color: #0a0a0a;
}
@media (max-width: 768px) {
  .roi-card { padding: 2rem 1.5rem; }
  .roi-result-item { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .roi-result-label { max-width: 100%; }
  .roi-result-number { font-size: 1.5rem; }
  .roi-value { font-size: 1.2rem; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 120px 0;
}
.how-it-works .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.how-it-works h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.how-it-works .section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
/* Connecting line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.2;
  z-index: 0;
}
.step-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0a0a0a;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}
.step-icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin: 0 auto 1.2rem;
  opacity: 0.8;
}
.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   RESULTS / STATS
   ============================================ */
.results {
  padding: 120px 0;
  position: relative;
}
.results .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.results h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.results .section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s;
}
.stat-card:hover::before {
  opacity: 1;
}
.stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  color: var(--gold);
  opacity: 0.7;
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 120px 0;
}
.pricing .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.pricing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.pricing .section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.pricing-card-wrapper {
  max-width: 520px;
  margin: 0 auto;
  perspective: 1200px;
}
.pricing-card {
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transform-style: preserve-3d;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: var(--gradient-main);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  pointer-events: none;
}
.pricing-popular {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 60px;
  background: var(--gradient-main);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
}
.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 2rem;
}
.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.pricing-amount {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 4px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.pricing-card .btn {
  width: 100%;
}
/* Glow */
.pricing-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
  pointer-events: none;
}
/* Urgency badge */
.pricing-urgency {
  text-align: center;
  margin-top: 1.5rem;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 68, 102, 0.08);
  border: 1px solid rgba(255, 68, 102, 0.15);
  color: #ff6b6b;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================
   CONTACT / LEAD FORM
   ============================================ */
.contact {
  padding: 120px 0;
}
.contact .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.contact .section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}
.contact-info {
  padding: 40px;
}
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.contact-features li svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-form-card {
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option {
  background: #1a1a1a;
  color: var(--text-primary);
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show {
  display: block;
}
.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.form-success h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--text-secondary);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06), rgba(221,185,94,0.03), transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.2rem;
}
.final-cta p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta-urgency {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-glass);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  width: 28px;
  height: 28px;
}
.footer-brand span {
  font-weight: 600;
  font-size: 0.95rem;
}
.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--text-primary);
}

/* ============================================
   SOCIAL PROOF / TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
}
.testimonials .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.testimonials .section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  padding: 36px 32px;
  position: relative;
}
.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}
.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.testimonials-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  z-index: 99;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.6);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #0a0a0a;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Number counter animation */
.counter-animated {
  display: inline-block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 99;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.2rem;
  }
  .nav-toggle {
    display: flex;
    z-index: 101;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .floating-shape {
    opacity: 0.4;
  }
  .floating-shape:nth-child(n+4) {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
  }
  .steps-grid::before {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-number {
    font-size: 2.2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 36px 28px;
  }
  .pricing-amount {
    font-size: 3rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  .stat-card {
    padding: 24px 16px;
  }
  .stats-grid {
    gap: 12px;
  }
}

/* ============================================
   FEATURES / WHAT YOU GET
   ============================================ */
.features {
  padding: 120px 0;
}
.features .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.features h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.features .section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08), rgba(221,185,94,0.04), transparent 70%);
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.08), 0 0 80px rgba(201, 168, 76, 0.03);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.2rem;
}
.feature-icon svg {
  width: 100%;
  height: 100%;
}
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison {
  padding: 120px 0;
}
.comparison .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.comparison h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.comparison .section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.comparison-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  min-width: 600px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.02);
}
.comp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.comp-row:last-child {
  border-bottom: none;
}
.comp-cell {
  padding: 18px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}
.comp-feature {
  font-weight: 600;
  color: var(--text-primary);
}
.comp-header {
  background: rgba(255, 255, 255, 0.04);
}
.comp-header .comp-cell {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 14px 20px;
}
.comp-header .comp-ghost {
  color: var(--gold);
}
.comp-ghost {
  position: relative;
  background: rgba(201, 168, 76, 0.03);
}
.comp-row:not(.comp-header) .comp-ghost {
  border-left: 1px solid rgba(201, 168, 76, 0.1);
  border-right: 1px solid rgba(221, 185, 94, 0.1);
}
.comp-highlight {
  color: #00ff87;
  font-weight: 600;
}
.comp-sdr,
.comp-diy {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 120px 0;
}
.faq .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.faq h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.faq .section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.active {
  border-color: rgba(201, 168, 76, 0.15);
  background: rgba(255, 255, 255, 0.035);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.faq-icon::before {
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.active .faq-icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
  opacity: 0;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   FEATURES / COMPARISON / FAQ — RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features,
  .comparison,
  .faq,
  .testimonials {
    padding: 80px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  .comparison-table-wrap {
    margin: 0 -8px;
    padding: 0 8px;
  }
  .comp-cell {
    padding: 14px 12px;
    font-size: 0.82rem;
  }
  .comp-header .comp-cell {
    font-size: 0.72rem;
    padding: 12px;
  }
  .faq-question {
    font-size: 0.95rem;
    padding: 18px 20px;
  }
  .faq-answer p {
    padding: 0 20px 18px;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .comp-row {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
  }
  .comp-cell {
    padding: 12px 8px;
    font-size: 0.75rem;
  }
  .comp-header .comp-cell {
    font-size: 0.65rem;
    padding: 10px 8px;
  }
  .feature-card {
    padding: 28px 20px;
  }
}

/* ============================================
   FLOATING LINES CANVAS
   ============================================ */
#floating-lines {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: screen;
}

/* ============================================
   STAR BORDER — Only on outline buttons
   ============================================ */
.btn-outline.star-border {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-outline.star-border::before {
  content: '';
  position: absolute;
  inset: -100%;
  width: 300%;
  height: 300%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    var(--gold) 8%,
    transparent 16%,
    transparent 50%,
    var(--gold-light) 58%,
    transparent 66%
  );
  animation: starRotate 4s linear infinite;
  z-index: -2;
}
.btn-outline.star-border::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: var(--bg-dark);
  z-index: -1;
}
@keyframes starRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   ENHANCED GLOW PULSE on stats
   ============================================ */
.stat-card {
  position: relative;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: var(--gradient-main);
  transition: width 0.6s ease;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(201,168,76,0.5);
}
.stat-card:hover::after {
  width: 80%;
}

/* ============================================
   MOUSE SPOTLIGHT EFFECT
   ============================================ */
.spotlight {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, rgba(221,185,94,0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ============================================
   GLASS SHIMMER on hover (via extra element, not ::after to avoid conflicts)
   ============================================ */
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

/* ============================================
   HERO GRADIENT TEXT ANIMATION
   ============================================ */
.gradient-text-animated {
  background: linear-gradient(
    90deg,
    #C9A84C 0%,
    #DDB95E 25%,
    #f0d78c 50%,
    #DDB95E 75%,
    #C9A84C 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShift 3s linear infinite;
}
@keyframes goldShift {
  from { background-position: 0% center; }
  to { background-position: 200% center; }
}

/* --- Prefers Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .floating-shape {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
