/*
Theme Name: Praveen Digital Child
Theme URI: https://praveen.digital
Description: Child theme for praveen.digital — Full-Stack Digital Partner
Author: Praveen
Author URI: https://praveen.digital
Template: hello-elementor
Version: 1.0.0
Text Domain: praveen-digital
*/

/* ============================================
   DESIGN TOKENS — GLOBAL CSS VARIABLES
   ============================================ */
:root {
  /* Core Colors */
  --color-black:       rgb(8, 8, 12);
  --color-black-soft:  rgb(14, 14, 20);
  --color-black-card:  rgb(20, 20, 28);
  --color-black-border:rgb(35, 35, 48);

  /* Purple Palette */
  --color-purple:      rgb(138, 43, 226);
  --color-purple-mid:  rgb(100, 30, 180);
  --color-purple-dark: rgb(60, 15, 110);
  --color-purple-glow: rgba(138, 43, 226, 0.25);
  --color-purple-soft: rgba(138, 43, 226, 0.08);

  /* Gold Palette */
  --color-gold:        rgb(212, 175, 55);
  --color-gold-light:  rgb(255, 215, 90);
  --color-gold-soft:   rgba(212, 175, 55, 0.15);

  /* Text */
  --color-white:       rgb(255, 255, 255);
  --color-white-80:    rgba(255, 255, 255, 0.80);
  --color-white-50:    rgba(255, 255, 255, 0.50);
  --color-white-20:    rgba(255, 255, 255, 0.12);

  /* Body */
  --color-offwhite:    rgb(246, 245, 242);
  --color-body-bg:     rgb(248, 247, 244);
  --color-body-card:   rgb(255, 255, 255);

  /* CTA Buttons — 3 accent colors */
  --btn-primary-bg:    rgb(138, 43, 226);
  --btn-primary-text:  rgb(255, 255, 255);
  --btn-secondary-bg:  rgb(212, 175, 55);
  --btn-secondary-text:rgb(8, 8, 12);
  --btn-ghost-bg:      transparent;
  --btn-ghost-border:  rgb(138, 43, 226);
  --btn-ghost-text:    rgb(138, 43, 226);

  /* Typography */
  --font-display:      'Syne', sans-serif;
  --font-body:         'DM Sans', sans-serif;
  --font-mono:         'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-mid:  0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-purple: 0 0 40px rgba(138, 43, 226, 0.3);
  --shadow-gold:   0 0 30px rgba(212, 175, 55, 0.2);
  --shadow-card:   0 4px 32px rgba(0,0,0,0.08);
}

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================
   GLOBAL 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-color: var(--color-body-bg);
  color: var(--color-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Dark sections inherit dark text */
.dark-section { color: var(--color-white); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { font-family: var(--font-body); font-size: 1rem; line-height: 1.7; }

.text-gradient-purple {
  background: linear-gradient(135deg, var(--color-purple), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mono { font-family: var(--font-mono); }

/* ============================================
   BUTTONS — 3 VARIANTS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

/* Primary — Purple */
.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-bg);
  box-shadow: 0 4px 24px rgba(138, 43, 226, 0.4);
}
.btn-primary:hover {
  background: var(--color-purple-mid);
  box-shadow: var(--shadow-purple);
  transform: translateY(-2px);
  color: var(--color-white);
}

/* Secondary — Gold */
.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border-color: var(--btn-secondary-bg);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}
.btn-secondary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  color: var(--color-black);
}

/* Ghost — Outlined Purple */
.btn-ghost {
  background: transparent;
  color: var(--btn-ghost-text);
  border-color: var(--btn-ghost-border);
}
.btn-ghost:hover {
  background: var(--color-purple-soft);
  transform: translateY(-2px);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--color-body-card);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(0,0,0,0.06);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition-mid);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(138, 43, 226, 0.12);
  border-color: var(--color-purple);
}

.card-dark {
  background: var(--color-black-card);
  border: 2px solid var(--color-black-border);
  color: var(--color-white);
}
.card-dark:hover {
  border-color: var(--color-purple);
  box-shadow: var(--shadow-purple);
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--space-2xl) 0; }
.section-dark {
  background: var(--color-black);
  color: var(--color-white);
}
.section-purple-tint { background: var(--color-purple-soft); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================
   TOP ANNOUNCEMENT BAR
   ============================================ */
#pd-top-bar {
  background: linear-gradient(90deg, var(--color-black) 0%, var(--color-purple-dark) 50%, var(--color-black) 100%);
  color: var(--color-white-80);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  text-align: center;
  padding: 10px var(--space-md);
  position: relative;
  z-index: 9999;
  letter-spacing: 0.01em;
}
#pd-top-bar a {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.4);
  transition: var(--transition-fast);
}
#pd-top-bar a:hover { color: var(--color-gold-light); border-color: var(--color-gold-light); }
#pd-top-bar .close-bar {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  cursor: pointer; opacity: 0.5; font-size: 1.1rem; line-height: 1;
  background: none; border: none; color: white;
}
#pd-top-bar .close-bar:hover { opacity: 1; }

/* ============================================
   STICKY HEADER
   ============================================ */
#pd-header {
  position: sticky;
  top: 0;
  z-index: 9990;
  background: rgba(8, 8, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-black-border);
  transition: var(--transition-fast);
}
#pd-header.scrolled {
  background: rgba(8, 8, 12, 0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.pd-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 70px;
}

/* Logo */
.pd-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.03em;
}
.pd-logo span { color: var(--color-gold); }
.pd-logo-dot {
  width: 8px; height: 8px;
  background: var(--color-purple);
  border-radius: 50%;
  display: inline-block;
  margin-left: 2px;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(138,43,226,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(138,43,226,0); }
}

/* Desktop Nav */
.pd-nav { display: flex; align-items: center; gap: 4px; }
.pd-nav > li { list-style: none; position: relative; }
.pd-nav > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  color: var(--color-white-80);
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
  text-decoration: none; transition: var(--transition-fast);
}
.pd-nav > li > a:hover, .pd-nav > li > a.active {
  color: var(--color-white); background: var(--color-white-20);
}
.pd-nav > li > a .chevron {
  font-size: 0.7rem; transition: transform var(--transition-fast);
}
.pd-nav > li:hover > a .chevron { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--color-black-card);
  border: 1px solid var(--color-black-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  min-width: 580px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm);
  opacity: 0; pointer-events: none;
  transition: all var(--transition-fast);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(138,43,226,0.1);
}
.pd-nav > li:hover .mega-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.mega-menu-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px; border-radius: var(--radius-sm);
  text-decoration: none; color: var(--color-white-80);
  transition: var(--transition-fast); border: 1px solid transparent;
}
.mega-menu-item:hover {
  background: var(--color-purple-soft); border-color: var(--color-purple);
  color: var(--color-white);
}
.mega-menu-item .icon { font-size: 1.4rem; margin-bottom: 4px; }
.mega-menu-item .title { font-weight: 600; font-size: 0.9rem; font-family: var(--font-display); }
.mega-menu-item .desc { font-size: 0.78rem; color: var(--color-white-50); line-height: 1.4; }

/* Header Right */
.pd-header-right { display: flex; align-items: center; gap: 12px; }
.pd-search-btn {
  background: none; border: none; color: var(--color-white-50);
  cursor: pointer; padding: 8px; border-radius: var(--radius-sm);
  transition: var(--transition-fast); font-size: 1.1rem;
}
.pd-search-btn:hover { color: var(--color-white); background: var(--color-white-20); }

/* Mobile hamburger */
.pd-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.pd-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--color-white); border-radius: 2px;
  transition: var(--transition-fast);
}
.pd-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pd-hamburger.open span:nth-child(2) { opacity: 0; }
.pd-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Off-canvas menu */
#pd-offcanvas {
  position: fixed; top: 0; right: -100%;
  width: min(380px, 100vw); height: 100vh;
  background: var(--color-black-card);
  border-left: 1px solid var(--color-black-border);
  z-index: 99999; padding: 80px var(--space-md) var(--space-md);
  overflow-y: auto; transition: right var(--transition-mid);
}
#pd-offcanvas.open { right: 0; }
#pd-offcanvas-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 99998; opacity: 0; pointer-events: none;
  backdrop-filter: blur(4px); transition: opacity var(--transition-mid);
}
#pd-offcanvas-overlay.open { opacity: 1; pointer-events: all; }
.offcanvas-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--color-black-border); border: none;
  color: var(--color-white); cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
}
.offcanvas-close:hover { background: var(--color-purple); }
.offcanvas-nav { list-style: none; }
.offcanvas-nav li + li { border-top: 1px solid var(--color-black-border); }
.offcanvas-nav li a {
  display: block; padding: 14px 0;
  color: var(--color-white-80); font-family: var(--font-body);
  font-weight: 500; font-size: 1rem; text-decoration: none;
  transition: var(--transition-fast);
}
.offcanvas-nav li a:hover { color: var(--color-gold); padding-left: 8px; }
.offcanvas-submenu { list-style: none; padding: 8px 0 8px 16px; }
.offcanvas-submenu a {
  font-size: 0.88rem !important; color: var(--color-white-50) !important;
  padding: 8px 0 !important;
}
.offcanvas-submenu a:hover { color: var(--color-purple) !important; }
.offcanvas-cta { margin-top: var(--space-md); display: flex; flex-direction: column; gap: 10px; }

/* Mobile bottom nav */
#pd-mobile-bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(14, 14, 20, 0.96); backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-black-border);
  z-index: 9980; padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}
.mobile-bottom-nav-inner {
  display: flex; justify-content: space-around; align-items: center;
}
.mob-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-decoration: none; color: var(--color-white-50);
  font-size: 0.65rem; font-family: var(--font-body); font-weight: 500;
  transition: var(--transition-fast); padding: 4px 12px;
}
.mob-nav-item .icon { font-size: 1.2rem; }
.mob-nav-item.active, .mob-nav-item:hover { color: var(--color-purple); }

/* ============================================
   HERO SECTION
   ============================================ */
#pd-hero {
  background: var(--color-black);
  min-height: 92vh;
  display: flex; flex-direction: column;
  overflow: hidden; position: relative;
}
.hero-inner {
  flex: 1; display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1280px; margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  gap: var(--space-xl);
  position: relative; z-index: 2;
}

/* Animated bg noise */
#pd-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none; z-index: 1;
}
#pd-hero::after {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(138,43,226,0.2) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
  animation: hero-glow 6s ease-in-out infinite alternate;
}
@keyframes hero-glow {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(100px, 100px) scale(1.2); }
}

.hero-left { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-purple-soft); border: 1px solid var(--color-purple);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.8rem; font-family: var(--font-mono);
  color: var(--color-purple); margin-bottom: var(--space-md);
}
.hero-tag .blink {
  width: 6px; height: 6px; background: var(--color-purple);
  border-radius: 50%; animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hero-h1 { color: var(--color-white); margin-bottom: var(--space-md); }
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-purple), var(--color-gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--color-white-50); font-size: 1.1rem;
  margin-bottom: var(--space-lg); max-width: 480px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: var(--space-md); margin-top: var(--space-lg);
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--color-gold); line-height: 1;
}
.hero-stat span { font-size: 0.78rem; color: var(--color-white-50); margin-top: 2px; }

/* Hero Right — Video */
.hero-right { position: relative; z-index: 2; }
.hero-video-wrap {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; aspect-ratio: 16/10;
  border: 2px solid var(--color-black-border);
  box-shadow: var(--shadow-purple), 0 40px 80px rgba(0,0,0,0.6);
}
.hero-video-wrap iframe, .hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover; border: none;
}
.hero-video-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--color-black-card) 0%, var(--color-purple-dark) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--color-white-50);
}
.hero-video-placeholder .play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--color-purple); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; cursor: pointer; transition: var(--transition-fast);
  box-shadow: 0 0 0 0 rgba(138,43,226,0.5); animation: pulse-play 2s infinite;
}
@keyframes pulse-play {
  0% { box-shadow: 0 0 0 0 rgba(138,43,226,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(138,43,226,0); }
  100% { box-shadow: 0 0 0 0 rgba(138,43,226,0); }
}
.hero-video-placeholder p { font-size: 0.85rem; }

/* Scrolling tech strip */
.tech-strip {
  background: var(--color-black-soft);
  border-top: 1px solid var(--color-black-border);
  border-bottom: 1px solid var(--color-black-border);
  overflow: hidden; padding: 14px 0; position: relative; z-index: 2;
}
.tech-strip-inner {
  display: flex; gap: var(--space-lg);
  animation: strip-scroll 30s linear infinite;
  white-space: nowrap; width: max-content;
}
.tech-strip-inner:hover { animation-play-state: paused; }
@keyframes strip-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tech-chip {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--color-white-50); font-family: var(--font-mono); font-size: 0.78rem;
  flex-shrink: 0;
}
.tech-chip .dot { color: var(--color-purple); }

/* ============================================
   SERVICES SECTION
   ============================================ */
#pd-services {
  padding: var(--space-2xl) 0;
  background: var(--color-body-bg);
}
.services-layout {
  display: grid; grid-template-columns: 240px 1fr;
  gap: var(--space-lg); max-width: 1280px; margin: 0 auto; padding: 0 var(--space-md);
}
.services-filter-sidebar { position: sticky; top: 90px; align-self: start; }
.filter-title {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--color-white-50); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.filter-btn {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 10px 14px; border-radius: var(--radius-sm);
  background: none; border: 1px solid transparent;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  color: var(--color-white-80); cursor: pointer; transition: var(--transition-fast);
  text-align: left; margin-bottom: 4px;
}
.filter-btn:hover { background: var(--color-white-20); }
.filter-btn.active {
  background: var(--color-purple-soft); border-color: var(--color-purple);
  color: var(--color-purple);
}
.filter-btn .count {
  margin-left: auto; font-size: 0.75rem; opacity: 0.5;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}
.service-card {
  background: var(--color-black-card);
  border: 2px solid var(--color-black-border);
  border-radius: var(--radius-lg); padding: var(--space-md);
  transition: var(--transition-mid); cursor: pointer;
  display: flex; flex-direction: column; gap: 12px;
}
.service-card:hover {
  border-color: var(--color-purple);
  box-shadow: var(--shadow-purple); transform: translateY(-4px);
}
.service-card.hidden { display: none; }
.service-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--color-purple-soft); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem;
}
.service-name {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--color-white);
}
.service-desc { font-size: 0.85rem; color: var(--color-white-50); line-height: 1.5; }
.service-price {
  font-family: var(--font-mono); font-size: 0.85rem;
  color: var(--color-gold); margin-top: auto;
}
.service-cta {
  display: flex; align-items: center; gap: 6px;
  color: var(--color-purple); font-size: 0.85rem; font-weight: 600;
  transition: var(--transition-fast);
}
.service-card:hover .service-cta { gap: 10px; }

/* ============================================
   PACKAGES SECTION
   ============================================ */
#pd-packages { padding: var(--space-2xl) 0; background: var(--color-black); }
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md); max-width: 1100px; margin: 0 auto; padding: 0 var(--space-md);
}
.pkg-card {
  background: var(--color-black-card);
  border: 2px solid var(--color-black-border);
  border-radius: var(--radius-xl); padding: var(--space-lg);
  transition: var(--transition-mid); position: relative;
}
.pkg-card.featured {
  border-color: var(--color-purple);
  box-shadow: var(--shadow-purple);
}
.pkg-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-purple); color: white;
  font-size: 0.72rem; font-weight: 600; font-family: var(--font-mono);
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.pkg-name { font-family: var(--font-display); color: var(--color-white-50); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.pkg-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--color-white); margin: 8px 0 4px; }
.pkg-price span { font-size: 1rem; color: var(--color-white-50); font-weight: 400; }
.pkg-features { list-style: none; margin: var(--space-md) 0; display: flex; flex-direction: column; gap: 10px; }
.pkg-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.88rem; color: var(--color-white-80); line-height: 1.4;
}
.pkg-features li::before { content: '✓'; color: var(--color-gold); font-weight: 700; flex-shrink: 0; }

/* ============================================
   TOOLS TAB SECTION
   ============================================ */
#pd-tools { padding: var(--space-2xl) 0; background: var(--color-body-bg); }
.tools-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--space-lg); }
.tool-tab {
  padding: 10px 20px; border-radius: var(--radius-lg);
  background: var(--color-body-card); border: 2px solid rgba(0,0,0,0.08);
  font-family: var(--font-body); font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: var(--transition-fast);
}
.tool-tab.active {
  background: var(--color-purple); color: white; border-color: var(--color-purple);
}
.tool-tab:hover:not(.active) { border-color: var(--color-purple); color: var(--color-purple); }
.tool-panel { display: none; }
.tool-panel.active { display: block; }

/* PPC ROI Calculator */
.calculator-wrap {
  background: var(--color-black); border-radius: var(--radius-xl);
  padding: var(--space-lg); border: 2px solid var(--color-black-border);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg);
}
.calc-input-group { display: flex; flex-direction: column; gap: 16px; }
.calc-field label {
  display: block; font-size: 0.8rem; font-family: var(--font-mono);
  color: var(--color-white-50); margin-bottom: 6px; letter-spacing: 0.05em;
}
.calc-field input, .calc-field select {
  width: 100%; padding: 12px 16px;
  background: var(--color-black-soft); border: 1px solid var(--color-black-border);
  border-radius: var(--radius-sm); color: var(--color-white);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition-fast); outline: none;
}
.calc-field input:focus, .calc-field select:focus { border-color: var(--color-purple); }
.calc-results { display: flex; flex-direction: column; justify-content: center; gap: var(--space-md); }
.calc-result-box {
  background: var(--color-black-soft); border: 1px solid var(--color-black-border);
  border-radius: var(--radius-md); padding: var(--space-sm) var(--space-md);
}
.calc-result-box.highlight { border-color: var(--color-gold); background: var(--color-gold-soft); }
.calc-result-box label {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--color-white-50); letter-spacing: 0.08em; text-transform: uppercase;
}
.calc-result-box .value {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--color-white);
}
.calc-result-box.highlight .value { color: var(--color-gold); }

/* Creative Drawing Board */
.drawing-board-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 2px solid var(--color-black-border);
  background: var(--color-black);
}
.drawing-header {
  padding: 14px var(--space-md);
  border-bottom: 1px solid var(--color-black-border);
  display: flex; align-items: center; gap: 12px;
  background: var(--color-black-soft);
}
.drawing-header p { font-size: 0.85rem; color: var(--color-white-50); font-family: var(--font-mono); }
.drawing-tools-bar {
  display: flex; align-items: center; gap: 8px; margin-left: auto; flex-wrap: wrap;
}
.draw-tool-btn {
  padding: 6px 12px; border-radius: var(--radius-sm);
  background: var(--color-black-border); border: 1px solid transparent;
  color: var(--color-white-80); font-size: 0.8rem; font-family: var(--font-body);
  cursor: pointer; transition: var(--transition-fast);
}
.draw-tool-btn.active { background: var(--color-purple); color: white; border-color: var(--color-purple); }
.draw-tool-btn:hover:not(.active) { border-color: var(--color-purple); }
#pd-drawing-canvas { display: block; cursor: crosshair; touch-action: none; }
.color-swatches { display: flex; gap: 6px; flex-wrap: wrap; }
.color-swatch {
  width: 24px; height: 24px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition-fast);
}
.color-swatch.active, .color-swatch:hover { border-color: white; transform: scale(1.2); }
.draw-size-wrap { display: flex; align-items: center; gap: 8px; }
.draw-size-wrap label { font-size: 0.75rem; color: var(--color-white-50); font-family: var(--font-mono); }
#draw-size { width: 80px; accent-color: var(--color-purple); }

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
#pd-portfolio { padding: var(--space-2xl) 0; background: var(--color-black); }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md); max-width: 1280px; margin: var(--space-lg) auto 0; padding: 0 var(--space-md);
}
.portfolio-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid var(--color-black-border); background: var(--color-black-card);
  transition: var(--transition-mid); position: relative;
}
.portfolio-card:hover { border-color: var(--color-purple); transform: translateY(-4px); box-shadow: var(--shadow-purple); }
.portfolio-img {
  width: 100%; aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--color-black-card), var(--color-purple-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--color-white-50);
}
.portfolio-info { padding: var(--space-sm); }
.portfolio-tag {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--color-purple); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 6px; display: block;
}
.portfolio-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--color-white); }
.portfolio-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--color-black-soft); border: 1px solid var(--color-black-border);
  border-radius: 100px; padding: 3px 10px;
  font-size: 0.7rem; font-family: var(--font-mono); color: var(--color-white-50);
}

/* ============================================
   ABOUT / PROCESS SECTION
   ============================================ */
#pd-process { padding: var(--space-2xl) 0; background: var(--color-body-bg); }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md); max-width: 1280px; margin: var(--space-lg) auto 0; padding: 0 var(--space-md);
}
.process-step {
  background: var(--color-body-card); border: 2px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg); padding: var(--space-md);
  position: relative; overflow: hidden;
}
.process-step::before {
  content: attr(data-num);
  position: absolute; top: -10px; right: 10px;
  font-family: var(--font-display); font-size: 5rem; font-weight: 800;
  color: var(--color-purple); opacity: 0.06; line-height: 1;
  pointer-events: none;
}
.step-num-badge {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-purple); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
  margin-bottom: 12px;
}
.step-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.step-desc { font-size: 0.85rem; color: #666; line-height: 1.5; }

/* ============================================
   BLOG SECTION
   ============================================ */
#pd-blog { padding: var(--space-2xl) 0; background: var(--color-black); }
.blog-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-md); max-width: 1280px; margin: var(--space-lg) auto 0; padding: 0 var(--space-md);
}
.blog-card {
  background: var(--color-black-card); border: 2px solid var(--color-black-border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition-mid);
}
.blog-card:hover { border-color: var(--color-purple); transform: translateY(-4px); box-shadow: var(--shadow-purple); }
.blog-card-featured { grid-row: span 2; }
.blog-img {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-purple-dark), var(--color-black));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.blog-card-featured .blog-img { aspect-ratio: 4/3; }
.blog-info { padding: var(--space-sm); }
.blog-cat {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--color-purple); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.blog-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--color-white); line-height: 1.3; }
.blog-card-featured .blog-title { font-size: 1.3rem; }
.blog-meta { font-size: 0.75rem; color: var(--color-white-50); margin-top: 8px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
#pd-testimonials { padding: var(--space-2xl) 0; background: var(--color-body-bg); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md); max-width: 1280px; margin: var(--space-lg) auto 0; padding: 0 var(--space-md);
}
.testimonial-card {
  background: var(--color-body-card); border: 2px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg); padding: var(--space-md);
  box-shadow: var(--shadow-card); transition: var(--transition-mid);
}
.testimonial-card:hover { border-color: var(--color-gold); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.testimonial-stars { color: var(--color-gold); font-size: 1rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.9rem; line-height: 1.6; color: #444; font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-purple), var(--color-gold));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-family: var(--font-display); font-size: 0.9rem;
}
.author-name { font-weight: 600; font-size: 0.88rem; }
.author-role { font-size: 0.75rem; color: #888; }

/* ============================================
   CONTACT SECTION
   ============================================ */
#pd-contact { padding: var(--space-2xl) 0; background: var(--color-black); }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-xl); max-width: 1100px; margin: 0 auto; padding: 0 var(--space-md);
  align-items: start;
}
.contact-form-area {}
.contact-form-area h2 { color: var(--color-white); margin-bottom: 8px; }
.contact-form-area p { color: var(--color-white-50); margin-bottom: var(--space-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.78rem; font-family: var(--font-mono);
  color: var(--color-white-50); margin-bottom: 6px; letter-spacing: 0.05em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px;
  background: var(--color-black-card); border: 1px solid var(--color-black-border);
  border-radius: var(--radius-sm); color: var(--color-white);
  font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: var(--transition-fast);
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-purple); box-shadow: 0 0 0 3px rgba(138,43,226,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-area { padding-top: 20px; }
.contact-info-box {
  background: var(--color-black-card); border: 2px solid var(--color-black-border);
  border-radius: var(--radius-xl); padding: var(--space-lg);
}
.contact-info-box h3 { color: var(--color-white); margin-bottom: 8px; }
.contact-info-box > p { color: var(--color-white-50); font-size: 0.9rem; margin-bottom: var(--space-md); }
.contact-method {
  display: flex; align-items: center; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--color-black-border);
}
.contact-method:last-of-type { border-bottom: none; }
.contact-method-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--color-purple-soft); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-method-text strong { display: block; color: var(--color-white); font-size: 0.88rem; }
.contact-method-text span { font-size: 0.78rem; color: var(--color-white-50); }

/* ============================================
   FOOTER
   ============================================ */
#pd-footer {
  background: var(--color-black-soft);
  border-top: 1px solid var(--color-black-border);
  padding: var(--space-2xl) 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg); max-width: 1280px; margin: 0 auto; padding: 0 var(--space-md);
}
.footer-brand .pd-logo { margin-bottom: 12px; display: inline-flex; }
.footer-brand p { font-size: 0.85rem; color: var(--color-white-50); line-height: 1.6; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-social {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--color-black-border); display: flex; align-items: center;
  justify-content: center; color: var(--color-white-50);
  text-decoration: none; font-size: 0.9rem; transition: var(--transition-fast);
}
.footer-social:hover { background: var(--color-purple); color: white; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: var(--color-white); margin-bottom: 16px; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: var(--color-white-50); font-size: 0.85rem; text-decoration: none;
  transition: var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--color-gold); }
.footer-bottom {
  border-top: 1px solid var(--color-black-border);
  margin-top: var(--space-lg); padding: var(--space-sm) var(--space-md);
  max-width: 1280px; margin-left: auto; margin-right: auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--color-white-50); }
.footer-bottom a { color: var(--color-purple); text-decoration: none; }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.float-call {
  position: fixed; bottom: 90px; left: 20px;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgb(37, 211, 102); /* WhatsApp green */
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem; text-decoration: none;
  z-index: 9970; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition-fast); animation: float-bounce 3s ease-in-out infinite;
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
@keyframes float-bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.float-chat {
  position: fixed; bottom: 90px; right: 20px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--color-purple);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem; cursor: pointer;
  z-index: 9970; box-shadow: 0 4px 20px rgba(138,43,226,0.4);
  transition: var(--transition-fast);
}
.float-chat:hover { transform: scale(1.1); box-shadow: var(--shadow-purple); }

/* ============================================
   SECTION HEADERS (reusable)
   ============================================ */
.section-header { text-align: center; max-width: 680px; margin: 0 auto var(--space-lg); padding: 0 var(--space-md); }
.section-header.left { text-align: left; margin: 0 0 var(--space-lg); }
.section-label {
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-purple); margin-bottom: 10px; display: block;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: #888; font-size: 1rem; }
.section-header.dark-section p { color: var(--color-white-50); }
.section-header.dark-section h2 { color: var(--color-white); }

/* ============================================
   TRUST BAR / CLIENTS
   ============================================ */
.trust-bar {
  background: var(--color-black-soft); border-top: 1px solid var(--color-black-border);
  border-bottom: 1px solid var(--color-black-border);
  padding: 24px var(--space-md);
}
.trust-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: var(--space-lg); flex-wrap: wrap;
}
.trust-bar-label { font-size: 0.78rem; color: var(--color-white-50); font-family: var(--font-mono); white-space: nowrap; }
.trust-logos { display: flex; gap: var(--space-md); align-items: center; flex-wrap: wrap; }
.trust-logo {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  color: var(--color-white-20); letter-spacing: -0.02em; transition: var(--transition-fast);
}
.trust-logo:hover { color: var(--color-white-50); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .hero-right { max-width: 560px; margin: 0 auto; }
  .services-layout { grid-template-columns: 1fr; }
  .services-filter-sidebar { position: static; display: flex; gap: 8px; flex-wrap: wrap; }
  .filter-title { display: none; }
  .filter-btn { width: auto; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-row: auto; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .calculator-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pd-nav { display: none; }
  .pd-hamburger { display: flex; }
  #pd-mobile-bottom-nav { display: block; }
  body { padding-bottom: 70px; }
  .float-call, .float-chat { bottom: 80px; }
  .hero-inner { padding: var(--space-lg) var(--space-sm); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: var(--space-md); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  #pd-drawing-canvas { width: 100% !important; }
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
#pd-search-overlay {
  position: fixed; inset: 0; background: rgba(8,8,12,0.95);
  z-index: 99999; display: flex; align-items: flex-start;
  justify-content: center; padding-top: 15vh;
  opacity: 0; pointer-events: none; transition: opacity var(--transition-fast);
  backdrop-filter: blur(10px);
}
#pd-search-overlay.open { opacity: 1; pointer-events: all; }
.search-input-wrap {
  width: 100%; max-width: 600px; padding: 0 var(--space-md);
  position: relative;
}
.search-input-wrap input {
  width: 100%; padding: 18px 60px 18px 24px;
  background: var(--color-black-card); border: 2px solid var(--color-purple);
  border-radius: var(--radius-xl); color: var(--color-white);
  font-family: var(--font-display); font-size: 1.2rem;
  outline: none; box-shadow: var(--shadow-purple);
}
.search-close {
  position: absolute; right: calc(var(--space-md) + 12px); top: 50%;
  transform: translateY(-50%); background: none; border: none;
  color: var(--color-white-50); cursor: pointer; font-size: 1.2rem;
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.divider {
  height: 1px; background: var(--color-black-border);
  max-width: 1280px; margin: 0 auto;
}

/* Elementor overrides */
.elementor-section, .e-con { border-radius: 0 !important; }
.elementor-widget-wrap { width: 100%; }

/* ================================================
   SERVICE PAGES — GLOBAL DESIGN FIX
   Paste this at BOTTOM of style.css
   OR add as separate file in functions.php
   ================================================ */

/* ── FIX 1: Font stretch / wide font issue ────────────────────── */
.sp, .sp *, .sp h1, .sp h2, .sp h3,
.sp .sp-hero-h1, .sp .sp-h2,
.pd-services-page, .pd-services-page * {
  font-stretch: normal !important;
  font-variant: normal !important;
  letter-spacing: -0.02em;
  word-spacing: normal !important;
}

/* Headings — same as homepage */
.sp .sp-hero-h1 {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(2.2rem, 4vw, 3.5rem) !important;
  line-height: 1.12 !important;
  font-stretch: normal !important;
  color: rgb(255, 255, 255) !important;
}

.sp .sp-h2 {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-stretch: normal !important;
}

/* ── FIX 2: Colors — softer purple, proper white text ────────── */

/* Replace harsh purple with softer violet */
.sp {
  --purple: rgb(149, 76, 233) !important;
  --purple-soft: rgba(149, 76, 233, 0.08) !important;
  --purple-border: rgba(149, 76, 233, 0.2) !important;
  --gold: rgb(212, 175, 55) !important;
  --black: rgb(8, 8, 12) !important;
  --black-card: rgb(16, 16, 22) !important;
  --black-border: rgb(32, 32, 44) !important;
  --muted: rgba(255, 255, 255, 0.5) !important;
  --white: rgb(255, 255, 255) !important;
}

/* Dark sections — white text guaranteed */
.sp-hero,
.sp-section-dark,
.sp-section-dark * {
  color: inherit;
}

.sp-hero-h1 { color: rgb(255, 255, 255) !important; }
.sp-hero-sub { color: rgba(255, 255, 255, 0.55) !important; }
.sp-tl-title { color: rgb(255, 255, 255) !important; }
.sp-tl-desc  { color: rgba(255, 255, 255, 0.5) !important; }
.sp-why-title{ color: rgb(255, 255, 255) !important; }
.sp-why-text { color: rgba(255, 255, 255, 0.5) !important; }
.sp-h2.dark  { color: rgb(255, 255, 255) !important; }
.sp-sub.dark { color: rgba(255, 255, 255, 0.5) !important; }
.sp-label    { color: rgb(149, 76, 233) !important; }

/* Light sections — dark text */
.sp-h2.light   { color: rgb(18, 18, 26) !important; }
.sp-sub.light  { color: rgb(95, 95, 110) !important; }
.sp-info-title { color: rgb(18, 18, 26) !important; }
.sp-info-text  { color: rgb(95, 95, 110) !important; }
.sp-case-brand { color: rgb(18, 18, 26) !important; }
.sp-case-desc  { color: rgb(95, 95, 110) !important; }

/* ── FIX 3: White button with off-white border + shadow ────────
   (the rotating button on hero)                                 */
.sp-btn-primary {
  background: rgb(255, 255, 255) !important;
  color: rgb(8, 8, 12) !important;
  font-weight: 700 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 4px 20px rgba(255, 255, 255, 0.15),
    0 0 0 0 rgba(149, 76, 233, 0) !important;
  transition: all 0.3s ease !important;
}
.sp-btn-wrap:hover .sp-btn-primary {
  box-shadow:
    0 8px 32px rgba(255, 255, 255, 0.25),
    0 0 24px rgba(240, 230, 255, 0.3) !important;
  transform: translateY(-2px) !important;
}

/* Ghost button */
.sp-btn-ghost {
  color: rgba(255, 255, 255, 0.65) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
}
.sp-btn-ghost:hover {
  border-color: rgba(149, 76, 233, 0.5) !important;
  color: rgb(200, 170, 255) !important;
  background: rgba(149, 76, 233, 0.08) !important;
}

/* ── FIX 4: Rotating ring — softer glow ────────────────────── */
.sp-btn-rotating-ring {
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(149, 76, 233, 0.5) 25%,
    rgba(212, 175, 55, 0.4) 50%,
    rgba(149, 76, 233, 0.5) 75%,
    transparent 100%
  ) !important;
  filter: blur(4px) !important;
}

/* ── FIX 5: Hero gradient bg — deeper black ─────────────────── */
.sp-hero {
  background: linear-gradient(
    135deg,
    rgb(6, 6, 10) 0%,
    rgb(12, 8, 20) 50%,
    rgb(8, 8, 12) 100%
  ) !important;
}

/* ── FIX 6: Service badge pill ──────────────────────────────── */
.sp-service-badge {
  background: rgba(149, 76, 233, 0.1) !important;
  border: 1px solid rgba(149, 76, 233, 0.25) !important;
  color: rgb(180, 140, 255) !important;
  font-size: 0.78rem !important;
}

/* ── FIX 7: Video placeholder ───────────────────────────────── */
.sp-video-wrap {
  background: rgb(14, 12, 22) !important;
  border-color: rgb(32, 28, 50) !important;
}
.sp-play-btn {
  background: rgb(149, 76, 233) !important;
}

/* ── FIX 8: Timeline dots ───────────────────────────────────── */
.sp-tl-dot {
  background: rgb(149, 76, 233) !important;
  box-shadow: 0 0 0 3px rgba(149, 76, 233, 0.25) !important;
}
.sp-tl-content {
  background: rgb(16, 16, 24) !important;
  border-color: rgb(32, 32, 48) !important;
}
.sp-tl-content:hover {
  border-color: rgba(149, 76, 233, 0.3) !important;
}

/* ── FIX 9: Cards on dark bg ────────────────────────────────── */
.sp-why-card {
  background: rgb(16, 16, 24) !important;
  border-color: rgb(32, 32, 48) !important;
}
.sp-why-num { color: rgb(212, 175, 55) !important; }

/* ── FIX 10: Case study cards on light bg ───────────────────── */
.sp-case {
  background: rgb(255, 255, 255) !important;
  border-color: rgba(0, 0, 0, 0.07) !important;
}
.sp-case:hover {
  border-color: rgba(149, 76, 233, 0.4) !important;
}
.sp-case-result strong { color: rgb(120, 60, 200) !important; }

/* ── FIX 11: Final CTA box ──────────────────────────────────── */
.sp-final-cta {
  background: linear-gradient(
    135deg,
    rgba(149, 76, 233, 0.12) 0%,
    rgba(212, 175, 55, 0.06) 100%
  ) !important;
  border-color: rgba(149, 76, 233, 0.18) !important;
}
.sp-final-cta h2 { color: rgb(255, 255, 255) !important; }
.sp-final-cta p  { color: rgba(255, 255, 255, 0.5) !important; }

/* ── FIX 12: Info cards on light bg ─────────────────────────── */
.sp-info-card:hover {
  border-color: rgba(149, 76, 233, 0.4) !important;
  box-shadow: 0 8px 32px rgba(149, 76, 233, 0.1) !important;
}

/* ── FIX 13: Tags / chips ───────────────────────────────────── */
.sp-tl-tag {
  background: rgba(149, 76, 233, 0.08) !important;
  color: rgb(180, 140, 255) !important;
  border-color: rgba(149, 76, 233, 0.2) !important;
}
.sp-card-tag {
  background: rgba(255, 255, 255, 0.04) !important;
  color: rgba(255, 255, 255, 0.35) !important;
}

/* ── FIX 14: Breadcrumb ─────────────────────────────────────── */
.sp-breadcrumb { color: rgba(255, 255, 255, 0.35) !important; }
.sp-breadcrumb a { color: rgb(180, 140, 255) !important; }

/* ── FIX 15: Section dark background ───────────────────────── */
.sp-section-dark { background: rgb(8, 8, 12) !important; }
.sp-body { background: rgb(248, 247, 244) !important; }

/* ── FIX 16: Tactics grid on light bg ──────────────────────── */
.sp-tactic[style*="background:white"] {
  background: rgb(255, 255, 255) !important;
  border: 1.5px solid rgba(0, 0, 0, 0.07) !important;
}

/* ── Services main page fix ─────────────────────────────────── */
.pd-services-page .svc-card {
  background: rgb(16, 16, 24) !important;
  border-color: rgb(32, 32, 48) !important;
}
.pd-services-page .svc-card-name { color: rgb(255, 255, 255) !important; }
.pd-services-page .svc-card-desc { color: rgba(255, 255, 255, 0.45) !important; }
.pd-services-page .svc-hero { background: rgb(8, 8, 12) !important; }
.pd-services-page .svc-hero h1 { color: rgb(255, 255, 255) !important; }
.pd-services-page .svc-body { background: rgb(248, 247, 244) !important; }
.pd-services-page .svc-filter-btn { 
  background: rgb(255, 255, 255) !important;
  color: rgb(60, 60, 75) !important;
}
.pd-services-page .svc-filter-btn.active {
  background: rgb(149, 76, 233) !important;
  color: rgb(255, 255, 255) !important;
}

/* ── Packages page fix ──────────────────────────────────────── */
.pkg-card { background: rgb(16, 16, 24) !important; border-color: rgb(32,32,48) !important; }
.pkg-name  { color: rgba(255,255,255,0.5) !important; }
.pkg-price { color: rgb(255,255,255) !important; }
.pkg-features li { color: rgba(255,255,255,0.75) !important; }

