:root {
  --primary: #00ff88;
  --secondary: #1a1a1a;
  --accent: #2d2d2d;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --gradient: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  --border-radius: 15px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--secondary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-width: 320px;
  max-width: 100vw;
}

/* Prevent horizontal scrolling */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Container utility */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Main Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  padding: clamp(0.75rem, 2vw, 1rem) 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.main-header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.main-header.hidden {
  transform: translateY(-100%);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Brand / Logo Styles */
.brand a {
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.brand a:hover {
  transform: scale(1.06);
}

.brand svg {
  height: clamp(2.4rem, 4vw, 2.8rem);
  width: auto;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3));
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.28));
}

/* Desktop Navigation Styles */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link[aria-current="page"] {
  color: var(--primary);
}

.nav-link[aria-current="page"]::after {
  width: 100%;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Desktop Dropdown Menu Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 0.75rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  color: var(--primary);
  background: rgba(0, 255, 136, 0.05);
  border-left-color: var(--primary);
}

/* CTA Button Styles */
.header-cta {
  display: flex;
  align-items: center;
}

.cta-button {
  background: var(--gradient);
  color: white;
  text-decoration: none;
  padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1.2rem, 3vw, 1.5rem);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(3px);
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.25rem;
  z-index: 1002;
  position: relative;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(20px);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
}

.nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav {
  padding: clamp(5rem, 15vw, 8rem) clamp(1.5rem, 5vw, 2rem) 2rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Mobile Navigation Items */
.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
  text-decoration: none;
  padding: 1.25rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.mobile-nav-link:hover {
  color: var(--primary);
  transform: translateX(8px);
}

/* Mobile Accordion Styles */
.accordion-arrow {
  transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 -1rem;
  padding: 0 1rem;
}

.accordion-content.active {
  max-height: 300px;
  padding: 0.5rem 1rem 1rem;
}

.accordion-content a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.75rem 0 0.75rem 1rem;
  font-size: 1rem;
  transition: var(--transition);
  border-left: 2px solid transparent;
}

.accordion-content a:hover {
  color: var(--primary);
  border-left-color: var(--primary);
  transform: translateX(8px);
}

/* Mobile CTA */
.mobile-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .main-header {
    padding: 0.75rem 0;
  }

  .logo img {
    height: 34px;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 30px;
    max-width: 135px;
  }
}

@media (min-width: 769px) {
  .hamburger,
  .nav-overlay {
    display: none !important;
  }
}

/* Services Page Specific Styles */

/* Hero Section */
.services-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  padding: 120px 0 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-blob {
  position: absolute;
  background: var(--primary);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(120px);
  animation: float 15s ease-in-out infinite;
}

.hero-blob.blob-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.hero-blob.blob-2 {
  width: 300px;
  height: 300px;
  top: 60%;
  right: -5%;
  animation-delay: 5s;
}

.hero-blob.blob-3 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 30%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 255, 136, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.trust-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  min-width: 200px;
  justify-content: center;
}

.btn-primary {
  background: var(--gradient);
  color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 255, 136, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Overview */
.service-overview {
  padding: 100px 0;
  background: var(--secondary);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.overview-card {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.overview-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.overview-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 136, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}

.overview-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.overview-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 136, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Deliverables Section */
.deliverables-section {
  padding: 100px 0;
  background: var(--secondary);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.deliverable-category {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: var(--transition);
}

.deliverable-category:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.3);
}

.category-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
}

.deliverable-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.deliverable-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Content Strategy Section */
.content-strategy-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
}

.strategy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.strategy-visual {
  position: relative;
}

.strategy-diagram {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.strategy-step {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 24px;
  transition: var(--transition);
}

.strategy-step:hover {
  transform: translateX(8px);
  border-color: rgba(0, 255, 136, 0.3);
}

.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 255, 136, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.strategy-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.strategy-step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.strategy-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.strategy-feature h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.strategy-feature p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.strategy-feature ul {
  list-style: none;
  padding: 0;
}

.strategy-feature li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.strategy-feature li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* Video Marketing Section */
.video-marketing-section {
  padding: 100px 0;
  background: var(--secondary);
}

.video-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.video-type-card {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.video-type-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 136, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}

.video-type-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.video-type-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.video-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.video-features span {
  background: rgba(0, 255, 136, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.video-process {
  max-width: 1000px;
  margin: 0 auto;
}

.video-process h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.process-step {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.3);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Work Process */
.work-process {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(0, 255, 136, 0.2));
}

.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 60px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
  padding-top: 8px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-deliverables {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.deliverable {
  background: rgba(0, 255, 136, 0.1);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Content Formats Section */
.content-formats-section {
  padding: 100px 0;
  background: var(--secondary);
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.format-card {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.format-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.3);
}

.format-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 136, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}

.format-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.format-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Tools Section */
.tools-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
}

.tools-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tools-category h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.tool-item {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 16px;
  text-align: center;
  transition: var(--transition);
}

.tool-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.3);
}

.tool-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 136, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--primary);
}

.tool-item span {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Case Study Section */
.case-study-section {
  padding: 100px 0;
  background: var(--secondary);
}

.case-study-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.case-study-overview {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.client-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.client-industry {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 500;
}

.client-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.challenge-section h4,
.solution-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.challenge-section ul,
.solution-section ul {
  list-style: none;
  padding: 0;
}

.challenge-section li,
.solution-section li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.challenge-section li::before,
.solution-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.results-showcase h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.result-card {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.3);
}

.result-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.result-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.result-detail {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.testimonial-highlight {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 32px;
  text-align: center;
}

.testimonial-highlight blockquote {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.testimonial-highlight cite {
  color: var(--text-primary);
  font-style: normal;
}

.testimonial-highlight cite strong {
  color: var(--primary);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 255, 136, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  text-align: left;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer.active {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Final CTA */
.final-cta {
  padding: 100px 0;
  background: var(--secondary);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: rgba(0, 255, 136, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  z-index: 1000;
  display: none;
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--gradient);
  color: #1a1a1a;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

/* Footer */
footer {
  background: var(--secondary);
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

.footer-brand img {
  height: 2rem;
  margin-bottom: 1rem;
  max-width: 200px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  word-wrap: break-word;
}

.footer-contact h3 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.footer-contact a,
.footer-contact p {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.8;
  transition: var(--transition);
  display: block;
  word-wrap: break-word;
}

.footer-contact a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-secondary);
  text-decoration: none;
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-0.1875rem);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.875rem;
  word-wrap: break-word;
}

/* Floating Buttons */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 100px, 0) scale(0.6);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
}

.scroll-top:hover {
  transform: translate3d(0, -8px, 0) scale(1.08);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.4);
}

/* WhatsApp Button Container */
#whatsapp-launcher {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 10000;
}

/* WhatsApp Toggle Button */
#togglePanel {
  background: var(--primary);
  border: none;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(33, 162, 80, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

#togglePanel:hover {
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.55);
}

#togglePanel:active {
  transform: scale(1.05);
}

#togglePanel img {
  width: 48px;
  height: 48px;
}

@keyframes float-whatsapp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

#togglePanel.attention-glow {
  animation: float-whatsapp 3s ease-in-out infinite;
}

/* Notification Badge */
.notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(255, 71, 87, 0.4);
}

/* Glass Widget Panel */
#glass-widget {
  position: fixed;
  bottom: 180px;
  right: 20px;
  z-index: 9999;
  width: 310px;
  max-width: calc(100vw - 40px);
  padding: 22px;
  border-radius: 18px;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 25px, 0) scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

/* Show Panel */
#glass-widget.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

#glass-widget h4 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
}

/* Dropdown Select */
#whatsappService {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(45, 45, 45, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

#whatsappService:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.18);
}

/* WhatsApp CTA Button */
#dynamicWhatsapp {
  display: block;
  margin-top: 14px;
  text-align: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--gradient);
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.25);
  transition: all 0.25s ease;
}

#dynamicWhatsapp:hover {
  transform: translate3d(0, -3px, 0) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.45);
}

#dynamicWhatsapp:active {
  transform: translate3d(0, -1px, 0) scale(1.01);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .strategy-content,
  .case-study-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-trust {
    gap: 1rem;
  }
  
  .trust-item {
    flex: 1;
    min-width: 100px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .overview-grid,
  .benefits-grid,
  .deliverables-grid,
  .video-types-grid,
  .formats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .tools-categories {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .results-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .mobile-sticky-cta {
    display: block;
  }
  
  body {
    padding-bottom: 80px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  #glass-widget {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 160px;
  }

  #whatsapp-launcher {
    right: 16px;
    bottom: 92px;
  }

  .scroll-top {
    right: 16px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .overview-card,
  .benefit-card,
  .deliverable-category,
  .video-type-card,
  .format-card {
    padding: 24px;
  }
  
  .overview-icon,
  .benefit-icon,
  .video-icon {
    width: 50px;
    height: 50px;
  }
  
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 0 20px 20px;
  }
  
  .process-step {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .step-number {
    align-self: center;
  }
  
  .result-number {
    font-size: 1.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-blob {
    animation: none;
  }
  
  .overview-card:hover,
  .benefit-card:hover,
  .video-type-card:hover,
  .format-card:hover {
    transform: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .overview-card,
  .benefit-card,
  .deliverable-category,
  .video-type-card,
  .format-card,
  .faq-item {
    border: 2px solid var(--text-secondary);
  }
  
  .overview-card:hover,
  .benefit-card:hover,
  .video-type-card:hover,
  .format-card:hover,
  .faq-item:hover {
    border-color: var(--primary);
  }
}

/* Focus Styles for Accessibility */
.btn:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}


/* Here is best way and code you can use it */

/* SECTION PLAN (Detected):
1) .hero-section → Ambient gradient with floating particles
2) .service-overview → Glass morphism with subtle glow
3) .benefits-section → Layered depth with soft borders
4) .influencer-types → Premium card elevation system
5) .services-offered → Gradient mesh background
6) .process-section → Timeline with glowing connectors
7) .ugc-section → Frosted glass with accent lighting
8) .platforms-section → Interactive hover states
9) .case-studies → Portfolio-style presentation
10) .faq-section → Accordion with smooth animations
11) .final-cta → Hero-style gradient overlay
*/

/* 2025 Design Tokens */
:root {
  /* Premium Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Fluid Typography Scale */
  --text-xs: clamp(0.75rem, 0.8vw, 0.875rem);
  --text-sm: clamp(0.875rem, 1vw, 1rem);
  --text-base: clamp(1rem, 1.2vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.4vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.6vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 2vw, 1.875rem);
  --text-3xl: clamp(1.875rem, 2.5vw, 2.25rem);
  --text-4xl: clamp(2.25rem, 3vw, 3rem);
  --text-5xl: clamp(3rem, 4vw, 4rem);
  
  /* Premium Spacing Scale */
  --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --space-sm: clamp(0.5rem, 1vw, 0.75rem);
  --space-md: clamp(0.75rem, 1.5vw, 1rem);
  --space-lg: clamp(1rem, 2vw, 1.5rem);
  --space-xl: clamp(1.5rem, 3vw, 2rem);
  --space-2xl: clamp(2rem, 4vw, 3rem);
  --space-3xl: clamp(3rem, 6vw, 4rem);
  
  /* Premium Color Palette */
  --primary-50: rgba(0, 255, 136, 0.05);
  --primary-100: rgba(0, 255, 136, 0.1);
  --primary-200: rgba(0, 255, 136, 0.2);
  --primary-300: rgba(0, 255, 136, 0.3);
  --primary-400: rgba(0, 255, 136, 0.4);
  --primary-500: #00ff88;
  --primary-600: #00cc6a;
  --primary-700: #00994d;
  
  /* Glass & Depth Tokens */
  --glass-bg: rgba(45, 45, 45, 0.7);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: blur(24px);
  --glass-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  
  /* Premium Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(0, 255, 136, 0.15);
  
  /* Border Radius Tokens */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Animation Curves */
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ✅ BEST TEXT HIGHLIGHT FIX (GLOBAL) */
::selection {
  background: rgba(0, 255, 136, 0.22) !important; /* soft highlight */
  color: #ffffff !important; /* text stays readable */
}

::-moz-selection {
  background: rgba(0, 255, 136, 0.22) !important;
  color: #ffffff !important;
}

/* Typography Enhancer */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
  line-height: 1.1;
}

body, p, a, button, input, textarea, select {
  font-family: var(--font-body) !important;
}

/* ✅ HERO TITLE FIXED */
.hero-title {
  font-size: var(--text-5xl) !important;
  background: linear-gradient(135deg, #ffffff 0%, #00ff88 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent; /* ✅ FIX */
  text-shadow: none;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
}

/* ✅ HERO TITLE SELECTION FIX (BOX REMOVE) */
.hero-title::selection {
  background: rgba(0, 255, 136, 0.18) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important; /* ✅ makes text visible */
}

.hero-title::-moz-selection {
  background: rgba(0, 255, 136, 0.18) !important;
  color: #ffffff !important;
}

/* Section Title */
.section-title {
  font-size: var(--text-4xl) !important;
  letter-spacing: -0.025em;
}

.hero-description {
  font-size: var(--text-lg) !important;
  line-height: 1.7;
  max-width: 65ch;
  text-wrap: balance;
}

/* Premium Background System */
.hero-section {
  background: radial-gradient(ellipse at top, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at bottom right, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
              linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.service-overview {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.4) 0%, rgba(26, 26, 26, 0.6) 100%);
  position: relative;
}

.service-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.benefits-section {
  background: 
    linear-gradient(135deg, rgba(0, 255, 136, 0.02) 0%, transparent 50%),
    linear-gradient(45deg, rgba(45, 45, 45, 0.3) 0%, rgba(26, 26, 26, 0.5) 100%);
  position: relative;
}

.influencer-types {
  background: 
    radial-gradient(ellipse at top left, rgba(0, 255, 136, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.4) 100%);
}

.services-offered {
  background: 
    conic-gradient(from 180deg at 50% 50%, rgba(0, 255, 136, 0.02) 0deg, transparent 120deg, rgba(0, 255, 136, 0.03) 240deg, transparent 360deg),
    linear-gradient(135deg, rgba(45, 45, 45, 0.4) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.process-section {
  background: 
    radial-gradient(ellipse at bottom, rgba(0, 255, 136, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.3) 100%);
}

.ugc-section {
  background: 
    linear-gradient(45deg, rgba(0, 255, 136, 0.03) 0%, transparent 40%),
    linear-gradient(135deg, rgba(45, 45, 45, 0.5) 0%, rgba(26, 26, 26, 0.7) 100%);
  position: relative;
}

.platforms-section {
  background: 
    radial-gradient(circle at center, rgba(0, 255, 136, 0.02) 0%, transparent 70%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.4) 100%);
}

.case-studies {
  background: 
    linear-gradient(135deg, rgba(0, 255, 136, 0.02) 0%, transparent 50%),
    linear-gradient(225deg, rgba(45, 45, 45, 0.4) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.faq-section {
  background: 
    radial-gradient(ellipse at top, rgba(0, 255, 136, 0.03) 0%, transparent 60%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.3) 100%);
}

.final-cta {
  background: 
    radial-gradient(ellipse at center, rgba(0, 255, 136, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, rgba(45, 45, 45, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(0, 255, 136, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(0, 255, 136, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Depth + Glass */
.benefit-card,
.type-card,
.service-card,
.platform-card,
.case-study-card,
.stat-card,
.overview-stats,
.ugc-applications,
.faq-item {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow) !important;
  position: relative;
  overflow: hidden;
}

.benefit-card::before,
.type-card::before,
.service-card::before,
.platform-card::before,
.case-study-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-cubic);
}

.benefit-card:hover::before,
.type-card:hover::before,
.service-card:hover::before,
.platform-card:hover::before,
.case-study-card:hover::before {
  opacity: 1;
}

.benefit-card:hover,
.type-card:hover,
.service-card:hover,
.platform-card:hover,
.case-study-card:hover {
  border-color: rgba(0, 255, 136, 0.25) !important;
  box-shadow: 
    var(--glass-shadow),
    0 0 30px rgba(0, 255, 136, 0.1) !important;
  transform: translateY(-8px) scale(1.02) !important;
}

/* Process Timeline Enhancement */
.process-timeline::before {
  background: linear-gradient(to bottom, 
    var(--primary-500) 0%, 
    rgba(0, 255, 136, 0.6) 30%, 
    rgba(0, 255, 136, 0.3) 70%, 
    rgba(0, 255, 136, 0.1) 100%) !important;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.step-number {
  box-shadow: 
    0 8px 25px rgba(0, 255, 136, 0.3),
    0 0 0 4px rgba(0, 255, 136, 0.1) !important;
  position: relative;
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(0, 255, 136, 0.2), transparent, rgba(0, 255, 136, 0.2));
  z-index: -1;
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

/* Micro-Interactions */
.btn,
.cta-button,
.nav-link,
.mobile-nav-link,
.faq-question,
.trust-badge,
.application-chip {
  transition: all 0.3s var(--ease-out-cubic) !important;
}

.btn:hover,
.cta-button:hover {
  transform: translateY(-3px) scale(1.02) !important;
}

.btn:active,
.cta-button:active {
  transform: translateY(-1px) scale(0.98) !important;
  transition: all 0.1s var(--ease-out-cubic) !important;
}

.nav-link:hover {
  transform: translateY(-1px);
}

.trust-badge:hover,
.application-chip:hover {
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: var(--shadow-md);
}

.faq-question:hover {
  background: rgba(0, 255, 136, 0.03) !important;
}

/* Enhanced Focus States */
.btn:focus-visible,
.cta-button:focus-visible,
.nav-link:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--primary-500) !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.2) !important;
}

/* Premium Icon Enhancements */
.benefit-icon,
.type-icon,
.service-icon,
.platform-icon,
.stat-icon {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.05) 100%) !important;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 12px rgba(0, 255, 136, 0.1) !important;
  position: relative;
  overflow: hidden;
}

.benefit-icon::before,
.type-icon::before,
.service-icon::before,
.platform-icon::before,
.stat-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: transform 0.6s var(--ease-out-cubic);
  opacity: 0;
}

.benefit-card:hover .benefit-icon::before,
.type-card:hover .type-icon::before,
.service-card:hover .service-icon::before,
.platform-card:hover .platform-icon::before,
.stat-item:hover .stat-icon::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

/* ✅ Enhanced Gradient Text FIXED */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #00ff88 30%, #00cc6a 70%, #ffffff 100%) !important;
  background-size: 200% 200%;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  animation: gradient-shift 4s ease-in-out infinite;
}

/* ✅ Gradient selection fix (BOX REMOVE) */
.gradient-text::selection {
  background: rgba(0, 255, 136, 0.18) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.gradient-text::-moz-selection {
  background: rgba(0, 255, 136, 0.18) !important;
  color: #ffffff !important;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Motion Safety */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .gradient-text {
    animation: none !important;
    background-position: 0% 50% !important;
  }
  
  .step-number::before {
    animation: none !important;
  }
  
  .hero-blob {
    animation: none !important;
  }
}

/* Overflow Guardrails */
* {
  box-sizing: border-box !important;
}

html, body {
  overflow-x: clip !important;
  max-width: 100vw !important;
}

img, svg, video {
  max-width: 100% !important;
  height: auto !important;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}

/* Mobile Enhancements */
@media (max-width: 768px) {
  .hero-title {
    font-size: var(--text-4xl) !important;
    line-height: 1.2 !important;
    max-width: 95vw !important;
  }
  
  .section-title {
    font-size: var(--text-3xl) !important;
  }
  
  .benefit-card,
  .type-card,
  .service-card,
  .platform-card,
  .case-study-card {
    padding: var(--space-lg) !important;
  }
  
  .benefit-icon,
  .type-icon,
  .service-icon,
  .platform-icon {
    width: 48px !important;
    height: 48px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--text-3xl) !important;
    max-width: 100% !important;
    padding: 0 var(--space-sm) !important;
  }
  
  .hero-description {
    font-size: var(--text-base) !important;
    padding: 0 var(--space-sm) !important;
  }
  
  .section-title {
    font-size: var(--text-2xl) !important;
  }
}

/* High-end Polish */
.hero-content,
.section-header {
  animation: fade-in-up 0.8s var(--ease-out-cubic) both;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered animations will be handled by existing JS */
.fade-in,
.slide-in-left,
.slide-in-right {
  transition: all 0.8s var(--ease-out-cubic) !important;
}

/* Enhanced WhatsApp Widget */
#glass-widget {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow) !important;
}

#togglePanel {
  box-shadow: 
    0 15px 35px rgba(0, 255, 136, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

#togglePanel:hover {
  box-shadow: 
    0 20px 45px rgba(0, 255, 136, 0.4),
    0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Scroll indicator enhancement */
.scroll-top {
  background: var(--gradient) !important;
  box-shadow: 
    var(--shadow-lg),
    0 0 20px rgba(0, 255, 136, 0.3) !important;
}

.scroll-top:hover {
  box-shadow: 
    var(--shadow-xl),
    0 0 30px rgba(0, 255, 136, 0.4) !important;
}
