/* ============================================
   WAQAS MALIK — WORLD-CLASS REAL ESTATE WEBSITE
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #050816;
  --bg-secondary: #0A0E1A;
  --bg-card: #0D1B2A;
  --bg-card-hover: #112035;
  --gold: #C9A84C;
  --gold-light: #F0C040;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --blue-accent: #4FC3F7;
  --text-primary: #FFFFFF;
  --text-secondary: #8892A4;
  --text-muted: #4A5568;
  --border: rgba(201, 168, 76, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --gradient-gold: linear-gradient(135deg, #C9A84C, #F0C040, #C9A84C);
  --gradient-dark: linear-gradient(135deg, #0A0E1A, #050816);
  --gradient-card: linear-gradient(135deg, #0D1B2A, #112035);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.2);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--font-body);
  outline: none;
}
select { -webkit-appearance: none; appearance: none; }

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-gold);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-content { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  animation: pulse 1s ease infinite alternate;
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--border-subtle);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-gold);
  border-radius: 999px;
  animation: loadFill 1.8s ease forwards;
}
.loader-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@keyframes loadFill { to { width: 100%; } }
@keyframes pulse { from { opacity: 0.6; } to { opacity: 1; } }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== UTILITY ===== */
.gold { color: var(--gold); }
.gold-icon { color: var(--gold); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.desktop-br { display: block; }

/* ===== ANIMATIONS ===== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  background: var(--gradient-gold);
  color: #050816;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201, 168, 76, 0.4); }
.btn-primary.btn-large { padding: 18px 36px; font-size: 1.05rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); padding: 16px; font-size: 1rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(5, 8, 22, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; }
.logo-text { color: white; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gradient-gold) !important;
  color: #050816 !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  display: flex !important;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(5,8,22,0.4) 0%, rgba(5,8,22,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 8px 20px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-subtitle strong { color: var(--gold); }
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.trust-stars { color: var(--gold); font-size: 0.8rem; display: flex; gap: 2px; }
.trust-divider { width: 1px; height: 20px; background: var(--border); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: bounce 2s ease infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== MARQUEE ===== */
.marquee-wrapper {
  overflow: hidden;
  background: rgba(201,168,76,0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.marquee-track .dot { color: var(--gold); font-size: 0.6rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== STATS ===== */
.stats-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: var(--shadow-card); }
.stat-icon {
  width: 56px; height: 56px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--gold);
  font-size: 1.3rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== ABOUT ===== */
.about-section {
  padding: 8rem 0;
  background: var(--bg-primary);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
  height: 500px;
}
.about-image-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: var(--radius-lg);
}
.about-avatar {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 80px auto 0;
}
.avatar-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box, var(--gradient-gold) border-box;
  animation: rotate 8s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.avatar-placeholder {
  width: 100%; height: 100%;
  background: var(--gradient-card);
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.avatar-placeholder i { font-size: 3rem; color: var(--gold); opacity: 0.6; }
.avatar-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: #050816;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.about-floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  backdrop-filter: blur(20px);
  animation: float 4s ease-in-out infinite;
}
.about-floating-card i { font-size: 1.3rem; }
.about-floating-card strong { display: block; font-size: 0.85rem; }
.about-floating-card span { font-size: 0.75rem; color: var(--text-secondary); }
.card-1 { left: -20px; top: 30px; animation-delay: 0s; }
.card-2 { right: -20px; bottom: 80px; animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.about-text {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-text strong, .about-text em { color: var(--text-primary); }
.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.skill-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 14px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.skill-tag:hover { border-color: var(--gold); color: var(--gold); }
.skill-tag i { color: var(--gold); }

/* ===== SERVICES ===== */
.services-section {
  padding: 8rem 0;
  background: var(--bg-secondary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  group: true;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  background: var(--bg-card-hover);
}
.service-icon-wrap {
  width: 60px; height: 60px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--gradient-gold);
  color: #050816;
  border-color: transparent;
  transform: scale(1.05);
}
.service-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201,168,76,0.06);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.service-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-features {
  margin-bottom: 2rem;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.service-features li:last-child { border-bottom: none; }
.service-features li i { color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.3s;
}
.service-link:hover { gap: 0.7rem; }

.service-card-cta {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border-color: var(--border) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-card-cta:hover { transform: translateY(-6px) !important; }
.service-cta-content { padding: 1rem; }
.service-cta-icon {
  width: 70px; height: 70px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #050816;
  margin: 0 auto 1.5rem;
  animation: float 3s ease-in-out infinite;
}
.service-cta-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.service-cta-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.service-cta-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.service-cta-note i { color: var(--gold); }

/* ===== PROCESS ===== */
.process-section {
  padding: 8rem 0;
  background: var(--bg-primary);
}
.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 2rem;
  position: relative;
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.process-step-icon {
  width: 72px; height: 72px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #050816;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .process-step-icon {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(201,168,76,0.5);
}
.process-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.process-step-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.process-connector {
  flex: 0 0 60px;
  height: 2px;
  background: var(--gradient-gold);
  align-self: center;
  margin-bottom: 5rem;
  opacity: 0.3;
  position: relative;
}
.process-connector::after {
  content: '▶';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.6rem;
  opacity: 0.5;
}

/* ===== RESULTS ===== */
.results-section {
  padding: 8rem 0;
  background: var(--bg-secondary);
}
.results-filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-gold);
  border-color: transparent;
  color: #050816;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.result-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}
.result-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.result-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 2.5rem;
  font-weight: 600;
  font-size-icon: 2.5rem;
  transition: transform 0.4s;
}
.result-card:hover .result-img-placeholder { transform: scale(1.05); }
.result-img-placeholder span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.website-theme { background: linear-gradient(135deg, #1a1a4e, #2d2d8a); color: #7b8cff; }
.crm-theme { background: linear-gradient(135deg, #1a3a1a, #2d6e2d); color: #4dff4d; }
.video-theme { background: linear-gradient(135deg, #3a1a1a, #6e2d2d); color: #ff6b6b; }
.design-theme { background: linear-gradient(135deg, #3a1a3a, #6e2d6e); color: #cc88ff; }
.combo-theme { background: linear-gradient(135deg, #1a2a3a, #2d4a6e); color: #4FC3F7; }
.social-theme { background: linear-gradient(135deg, #2a1a1a, #4e2d2d); color: var(--gold); }

.result-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,8,22,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.result-card:hover .result-overlay { opacity: 1; }
.result-metrics {
  display: flex;
  gap: 2rem;
  text-align: center;
}
.metric .metric-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric .metric-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.result-card-body { padding: 1.5rem; }
.result-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.result-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.result-card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.result-card-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.result-card-stats span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.result-card-stats i { color: var(--gold); }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 8rem 0;
  background: var(--bg-primary);
}
.testimonials-slider-wrapper { position: relative; overflow: hidden; }
.testimonials-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.testimonial-quote {
  color: var(--gold);
  font-size: 2rem;
  opacity: 0.4;
  margin-bottom: 1.5rem;
}
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 50px; height: 50px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-info { flex: 1; }
.testimonial-info strong { display: block; font-size: 1rem; margin-bottom: 0.2rem; }
.testimonial-info span { font-size: 0.82rem; color: var(--text-secondary); }
.testimonial-stars { color: var(--gold); font-size: 0.8rem; display: flex; gap: 2px; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.slider-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: var(--font-body);
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== RESOURCES ===== */
.resources-section {
  padding: 8rem 0;
  background: var(--bg-secondary);
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.resource-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}
.resource-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.resource-icon-wrap.guide { background: rgba(201,168,76,0.12); color: var(--gold); }
.resource-icon-wrap.checklist { background: rgba(79,195,247,0.12); color: var(--blue-accent); }
.resource-icon-wrap.video-res { background: rgba(255,107,107,0.12); color: #ff6b6b; }
.resource-icon-wrap.template { background: rgba(150,100,255,0.12); color: #9b59f5; }
.resource-icon-wrap.playbook { background: rgba(100,200,100,0.12); color: #4dbb4d; }
.resource-icon-wrap.newsletter { background: rgba(201,168,76,0.12); color: var(--gold); }

.resource-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--border-subtle);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.resource-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.resource-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.resource-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.resource-meta span { display: flex; align-items: center; gap: 0.3rem; }
.resource-meta i { color: var(--gold); }
.resource-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  margin-top: auto;
}
.resource-download-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.resource-newsletter { grid-column: span 1; }
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  flex-direction: column;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.875rem;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 10px 16px;
  background: var(--gradient-gold);
  color: #050816;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: var(--radius);
  transition: var(--transition);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
}
.newsletter-form button:hover { opacity: 0.9; transform: translateY(-1px); }
.newsletter-note {
  font-size: 0.72rem !important;
  color: var(--text-muted) !important;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0 !important;
}
.newsletter-note i { color: var(--gold); }

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 8rem 0;
  background: var(--bg-primary);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}
.content-featured-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 1.5rem;
}
.content-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-img-placeholder.featured {
  background: linear-gradient(135deg, #1a1a3a, #2d3a6e);
  color: var(--gold);
  font-size: 5rem;
  opacity: 0.6;
}
.content-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #050816;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  box-shadow: 0 0 0 12px rgba(201,168,76,0.15);
}
.content-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 0 16px rgba(201,168,76,0.2); }
.content-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.content-tag.small { font-size: 0.68rem; padding: 2px 8px; }
.content-featured-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.8rem;
}
.content-featured-body p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.content-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.content-meta span { display: flex; align-items: center; gap: 0.3rem; }
.content-meta i { color: var(--gold); }
.content-posts { display: flex; flex-direction: column; gap: 1.5rem; }
.content-post {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  transition: var(--transition);
}
.content-post:hover { border-color: var(--border); transform: translateX(4px); }
.content-post-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  flex-shrink: 0;
}
.content-post-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.content-post-body p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0.8rem; }
.content-read-link {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s;
}
.content-read-link:hover { gap: 0.5rem; }

/* Coaching CTA */
.coaching-cta {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.coaching-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
}
.coaching-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 4px 12px;
  background: rgba(79,195,247,0.12);
  border: 1px solid rgba(79,195,247,0.3);
  border-radius: 999px;
  color: var(--blue-accent);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.coaching-cta h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.coaching-cta p { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.95rem; }
.coaching-form {
  display: flex;
  gap: 0.5rem;
}
.coaching-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.9rem;
}
.coaching-form input::placeholder { color: var(--text-muted); }
.coaching-form input:focus { border-color: var(--gold); }
.coaching-form button {
  padding: 12px 20px;
  background: var(--gradient-gold);
  color: #050816;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: var(--transition);
}
.coaching-form button:hover { opacity: 0.9; }
.coaching-count {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.coaching-count i { color: var(--gold); }
.coaching-count strong { color: var(--text-primary); }

.coaching-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.coaching-icon-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  transition: var(--transition);
}
.coaching-icon-item:hover { border-color: var(--border); background: var(--gold-glow); }
.coaching-icon-item i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.coaching-icon-item span { font-size: 0.78rem; color: var(--text-secondary); }

/* ===== PRICING ===== */
.pricing-section {
  padding: 8rem 0;
  background: var(--bg-secondary);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}
.pricing-popular {
  border-color: var(--gold) !important;
  background: linear-gradient(to bottom, rgba(201,168,76,0.05), var(--bg-card)) !important;
  transform: scale(1.03);
}
.pricing-popular:hover { transform: scale(1.03) translateY(-6px) !important; }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: #050816;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}
.price-currency { font-size: 1rem; color: var(--text-secondary); }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}
.price-period { font-size: 0.85rem; color: var(--text-secondary); }
.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-features {
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}
.pricing-features li i.fa-check { color: var(--gold); }
.pricing-feature-no {
  opacity: 0.35;
}
.pricing-feature-no i.fa-times { color: var(--text-muted) !important; }
.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.pricing-note i { color: var(--gold); }

/* ===== FAQ ===== */
.faq-section {
  padding: 8rem 0;
  background: var(--bg-primary);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.active { border-color: var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s;
  font-family: var(--font-body);
}
.faq-item.active .faq-question { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
  font-size: 0.9rem;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== BIG CTA ===== */
.big-cta-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background: var(--bg-secondary);
}
#cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.4;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,14,26,0.3) 0%, rgba(10,14,26,0.8) 100%);
}
.big-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 16px;
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.3);
  border-radius: 999px;
  color: #ff6b6b;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: blink 2s ease infinite;
}
.big-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.big-cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.big-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.cta-urgency {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.cta-urgency i { color: #ff6b6b; }
.cta-urgency strong { color: var(--gold); }

/* ===== CONTACT ===== */
.contact-section {
  padding: 8rem 0;
  background: var(--bg-primary);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.contact-reasons { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-reason {
  display: flex;
  gap: 1rem;
}
.reason-icon {
  width: 44px; height: 44px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-reason strong { display: block; font-size: 0.95rem; margin-bottom: 0.3rem; }
.contact-reason p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.contact-social h4 { font-size: 1rem; margin-bottom: 1rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 42px; height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-link:hover { background: var(--gold-glow); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  width: 100%;
}
.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); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}
.checkbox-label:hover { background: var(--border-subtle); }
.checkbox-label input { accent-color: var(--gold); cursor: pointer; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.form-note i { color: var(--gold); }

/* ===== FOOTER ===== */
.footer { background: var(--bg-secondary); }
.footer-top { padding: 5rem 0 3rem; border-bottom: 1px solid var(--border-subtle); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold-glow); border-color: var(--gold); color: var(--gold); }
.footer-links-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links-col a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== FLOATING ELEMENTS ===== */
#back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 500;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { background: var(--gold-glow); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 20px;
  background: var(--gradient-gold);
  color: #050816;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 999px;
  z-index: 500;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.floating-cta.visible { opacity: 1; transform: translateY(0); }
.floating-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.6); }

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.video-modal.active { opacity: 1; visibility: visible; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,8,22,0.95);
  backdrop-filter: blur(10px);
}
.modal-content {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { color: var(--gold); border-color: var(--gold); }
.modal-video-placeholder { text-align: center; }
.modal-video-placeholder i { font-size: 4rem; color: var(--gold); margin-bottom: 1rem; opacity: 0.5; }
.modal-video-placeholder p { color: var(--text-secondary); line-height: 1.7; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-gold);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast i { color: var(--gold); }

/* ===== BTN PULSE ===== */
.btn-pulse { animation: btnPulse 2.5s ease infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

/* ===== PAIN SECTION ===== */
.pain-section {
  padding: 8rem 0;
  background: var(--bg-primary);
}
.pain-header { text-align: center; margin-bottom: 3rem; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,80,80,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.pain-card:hover { transform: translateY(-4px); border-color: rgba(255,80,80,0.25); }
.pain-icon.bad { font-size: 1.5rem; color: #ff6b6b; margin-bottom: 1rem; }
.pain-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.8rem; }
.pain-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }
.pain-card p strong { color: var(--gold); }
.pain-solution {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.solution-line { flex: 1; height: 1px; background: var(--border); }
.solution-text {
  white-space: nowrap;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ===== ABOUT MARKETS ===== */
.about-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.market-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 14px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.market-tag i { color: var(--gold); font-size: 0.65rem; }
.market-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}
.guarantee-card {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
}
.guarantee-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.guarantee-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
.guarantee-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.guarantee-badge-wrap { flex-shrink: 0; }
.guarantee-badge {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float 4s ease-in-out infinite;
}
.gb-top {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #050816;
  line-height: 1;
}
.gb-mid { font-size: 0.75rem; font-weight: 700; color: #050816; opacity: 0.8; }
.gb-bot { font-size: 0.75rem; font-weight: 700; color: #050816; opacity: 0.8; }
.gb-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(201,168,76,0.4);
  animation: rotate 10s linear infinite;
}

/* ===== PRICING ROI NOTE ===== */
.pricing-roi {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 0.8rem;
  font-weight: 600;
}
.pricing-guarantee-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.pricing-guarantee-note i { color: var(--gold); }
.pricing-guarantee-note strong { color: var(--text-primary); }

/* ===== CONTACT DIRECT ===== */
.contact-direct { margin-bottom: 2rem; }
.contact-direct h4 { font-size: 0.9rem; margin-bottom: 0.8rem; color: var(--text-secondary); }
.direct-links { display: flex; flex-direction: column; gap: 0.6rem; }
.direct-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--border-subtle);
}
.direct-link.whatsapp { color: #25D366; }
.direct-link.whatsapp:hover { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.3); }
.direct-link.email { color: var(--text-secondary); }
.direct-link.email:hover { background: var(--gold-glow); border-color: var(--border); color: var(--gold); }

/* ===== FORM HEADER ===== */
.form-header { margin-bottom: 1.2rem; }
.form-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 14px;
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.3);
  border-radius: 999px;
  color: #ff6b6b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  animation: blink 2s ease infinite;
}

/* ===== FOOTER SERVING ===== */
.footer-serving {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrapper { height: 300px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .coaching-cta { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-popular { transform: scale(1); }
  .pricing-popular:hover { transform: translateY(-6px) !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-timeline { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 40px; flex: 0 0 40px; margin-bottom: 0; margin-right: 0; }
  .process-connector::after { content: '▼'; right: auto; top: auto; bottom: -8px; left: 50%; transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .desktop-br { display: none; }
  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    background: rgba(5,8,22,0.98);
    backdrop-filter: blur(20px);
    gap: 2rem;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; color: var(--text-primary); }
  .nav-cta { font-size: 0.95rem !important; }
  .hamburger { display: flex; z-index: 1000; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { text-align: center; justify-content: center; }
  .checkbox-group { grid-template-columns: 1fr; }
  .coaching-form { flex-direction: column; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .floating-cta span { display: none; }
  .floating-cta { padding: 14px; border-radius: 50%; width: 50px; height: 50px; justify-content: center; }
  .floating-cta i { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-trust { gap: 1rem; font-size: 0.78rem; }
  .trust-divider { display: none; }
  .stat-card { padding: 1.5rem; }
  .stat-number { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .testimonial-card { padding: 1.5rem; }
}
