: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);
}

.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%;
}

.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;
}

/* Services 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-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-bottom: 60px;
}

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

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

.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.overview-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-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;
  width: 100%;
  max-width: 320px;
}

.stats-card h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: right;
  max-width: 120px;
}

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 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;
  text-align: center;
  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: 0 auto 20px;
  color: var(--primary);
}

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

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

/* What We Offer */
.what-we-offer {
  padding: 100px 0;
  background: var(--secondary);
}

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

.service-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: 24px;
  transition: var(--transition);
}

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

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

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

.service-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* PPC Process */
.ppc-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;
}

/* Tools & Platforms */
.tools-platforms {
  padding: 100px 0;
  background: var(--secondary);
}

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

.tool-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);
}

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

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

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

.tool-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.case-study-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.case-study-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;
}

.case-study-card.featured {
  border-color: rgba(0, 255, 136, 0.3);
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.case-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

.case-challenge,
.case-solution {
  margin-bottom: 20px;
}

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

.case-challenge p,
.case-solution ul {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.case-solution ul {
  padding-left: 20px;
}

.case-solution li {
  margin-bottom: 6px;
}

.case-results h4 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.result-item {
  text-align: center;
  padding: 12px;
  background: rgba(0, 255, 136, 0.05);
  border-radius: 8px;
}

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

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

.testimonial-highlight {
  display: flex;
  align-items: center;
}

.testimonial-content {
  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;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

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

.testimonial-author strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.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: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  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 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;
}

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

#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;
}

#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);
}

#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);
}

#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);
}

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

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

  .hamburger {
    display: flex;
  }

  .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;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .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) {
  .benefit-card,
  .service-item,
  .tool-card {
    padding: 20px;
  }
  
  .benefit-icon,
  .service-icon,
  .tool-icon {
    width: 45px;
    height: 45px;
  }
  
  .benefit-title,
  .service-name,
  .tool-name {
    font-size: 1rem;
  }
  
  .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;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 30px;
    max-width: 135px;
  }
}

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

/* 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);
}

/* Focus styles for accessibility */
.nav-link:focus,
.cta-button:focus,
.hamburger:focus,
.mobile-nav-link:focus,
.accordion-trigger:focus,
.btn:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid #00ff88;
  outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-blob {
    animation: none;
  }
  
  .benefit-card:hover,
  .service-item:hover,
  .tool-card:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .main-header {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid white;
  }

  .dropdown-menu {
    background: rgba(0, 0, 0, 0.98);
    border: 2px solid white;
  }
  
  .benefit-card,
  .service-item,
  .tool-card,
  .faq-item {
    border: 2px solid var(--text-secondary);
  }
  
  .benefit-card:hover,
  .service-item:hover,
  .tool-card:hover,
  .faq-item:hover {
    border-color: var(--primary);
  }
}


/* 2025 Design Tokens */
:root {
    /* Premium Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 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 Radius Tokens */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Premium Shadow System */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.24);
    --shadow-glow: 0 0 32px rgba(0, 255, 136, 0.15);
    --shadow-glow-strong: 0 0 48px rgba(0, 255, 136, 0.25);

    /* Premium Blur Tokens */
    --blur-sm: 8px;
    --blur-md: 12px;
    --blur-lg: 16px;
    --blur-xl: 24px;

    /* Premium Border Tokens */
    --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
    --border-soft: 1px solid rgba(255, 255, 255, 0.12);
    --border-medium: 1px solid rgba(255, 255, 255, 0.16);
    --border-accent: 1px solid rgba(0, 255, 136, 0.2);
    --border-accent-strong: 1px solid rgba(0, 255, 136, 0.4);

    /* Premium Color Palette */
    --accent-50: rgba(0, 255, 136, 0.05);
    --accent-100: rgba(0, 255, 136, 0.1);
    --accent-200: rgba(0, 255, 136, 0.2);
    --accent-300: rgba(0, 255, 136, 0.3);
    --accent-500: #00ff88;
    --accent-600: #00cc6a;

    --neutral-50: rgba(255, 255, 255, 0.05);
    --neutral-100: rgba(255, 255, 255, 0.1);
    --neutral-200: rgba(255, 255, 255, 0.2);
    --neutral-800: rgba(26, 26, 26, 0.8);
    --neutral-900: rgba(15, 15, 15, 0.9);

    /* Premium Motion */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --duration-fast: 0.15s;
    --duration-normal: 0.25s;
    --duration-slow: 0.35s;
}

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

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

.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;
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
    line-height: 1.05 !important;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
    word-break: break-word;
}

.section-title {
    font-size: var(--text-4xl) !important;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: var(--text-lg) !important;
    line-height: 1.7;
    max-width: 85vw;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
}

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

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

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
}

/* Premium Background System */
.services-hero {
    background: linear-gradient(135deg,
            rgba(26, 26, 26, 1) 0%,
            rgba(45, 45, 45, 0.95) 25%,
            rgba(26, 26, 26, 1) 50%,
            rgba(45, 45, 45, 0.95) 75%,
            rgba(26, 26, 26, 1) 100%) !important;
    position: relative;
}

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

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

.service-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.key-benefits {
    background: linear-gradient(135deg,
            rgba(45, 45, 45, 0.8) 0%,
            rgba(26, 26, 26, 0.9) 50%,
            rgba(45, 45, 45, 0.8) 100%) !important;
    position: relative;
}

.key-benefits::after {
    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%);
}

.what-we-offer {
    background: rgba(26, 26, 26, 0.95) !important;
    position: relative;
}

.ppc-process {
    background: linear-gradient(135deg,
            rgba(45, 45, 45, 0.7) 0%,
            rgba(26, 26, 26, 0.85) 100%) !important;
    position: relative;
}

.tools-platforms {
    background: rgba(26, 26, 26, 0.98) !important;
}

.case-study-section {
    background: linear-gradient(135deg,
            rgba(45, 45, 45, 0.75) 0%,
            rgba(26, 26, 26, 0.9) 100%) !important;
}

.faq-section {
    background: rgba(26, 26, 26, 0.95) !important;
}

.final-cta {
    background: linear-gradient(135deg,
            rgba(45, 45, 45, 0.8) 0%,
            rgba(26, 26, 26, 0.9) 50%,
            rgba(45, 45, 45, 0.8) 100%) !important;
    position: relative;
}

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

/* Section Depth + Glass */
.benefit-card,
.service-item,
.tool-card {
    background: rgba(45, 45, 45, 0.4) !important;
    backdrop-filter: blur(var(--blur-lg));
    border: var(--border-soft) !important;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.benefit-card::before,
.service-item::before,
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 255, 136, 0.4) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.stats-card,
.case-study-card,
.testimonial-content {
    background: rgba(45, 45, 45, 0.5) !important;
    backdrop-filter: blur(var(--blur-xl));
    border: var(--border-medium) !important;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.faq-item {
    background: rgba(45, 45, 45, 0.4) !important;
    backdrop-filter: blur(var(--blur-md));
    border: var(--border-soft) !important;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 255, 136, 0.05) 50%,
            transparent 100%);
    transition: left var(--duration-slow) var(--ease-smooth);
}

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

.step-number {
    box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

/* Micro-Interactions */
.benefit-card:hover,
.service-item:hover,
.tool-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: rgba(0, 255, 136, 0.4) !important;
    box-shadow: var(--shadow-xl), var(--shadow-glow-strong) !important;
    transition: all var(--duration-normal) var(--ease-smooth) !important;
}

.benefit-card:hover::before,
.service-item:hover::before,
.tool-card:hover::before {
    opacity: 1;
}

.benefit-card:active,
.service-item:active,
.tool-card:active {
    transform: translateY(-4px) scale(1.01);
}

.faq-item:hover {
    border-color: rgba(0, 255, 136, 0.4) !important;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.faq-item:hover::before {
    left: 0;
}

.step-number:hover::before {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    transition: all var(--duration-normal) var(--ease-bounce) !important;
}

.btn:active {
    transform: translateY(-1px) scale(1.02) !important;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 32px rgba(0, 255, 136, 0.4) !important;
}

.nav-link:hover {
    transform: translateY(-1px);
    transition: all var(--duration-fast) var(--ease-smooth);
}

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

/* Premium Button Enhancements */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%) !important;
    box-shadow: var(--shadow-lg), var(--shadow-glow) !important;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    transition: left var(--duration-slow) var(--ease-smooth);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(var(--blur-sm));
    border: var(--border-medium) !important;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(0, 255, 136, 0.3) !important;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* Enhanced Floating Elements */
.scroll-top {
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%) !important;
    box-shadow: var(--shadow-xl), var(--shadow-glow-strong) !important;
    backdrop-filter: blur(var(--blur-md));
    border: var(--border-accent);
}

.scroll-top:hover {
    transform: translate3d(0, -8px, 0) scale(1.1) !important;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.4) !important;
}

#togglePanel {
    box-shadow: var(--shadow-xl), var(--shadow-glow-strong) !important;
    backdrop-filter: blur(var(--blur-sm));
    border: 2px solid rgba(0, 255, 136, 0.2);
}

#togglePanel:hover {
    transform: scale(1.15) rotate(5deg) !important;
    box-shadow: var(--shadow-xl), 0 25px 50px rgba(0, 255, 136, 0.5) !important;
}

#glass-widget {
    background: rgba(15, 15, 15, 0.85) !important;
    backdrop-filter: blur(var(--blur-xl)) !important;
    border: var(--border-accent) !important;
    box-shadow: var(--shadow-xl), var(--shadow-glow) !important;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: var(--text-4xl) !important;
        max-width: 95vw;
        line-height: 1.1 !important;
    }

    .hero-description {
        font-size: var(--text-base) !important;
        max-width: 90vw;
    }

    .section-title {
        font-size: var(--text-3xl) !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl) !important;
        max-width: 98vw;
    }

    .benefit-card,
    .service-item,
    .tool-card {
        padding: var(--space-lg) !important;
    }
}

/* 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;
    }

    .hero-blob {
        animation: none !important;
    }

    .benefit-card:hover,
    .service-item:hover,
    .tool-card:hover,
    .btn:hover,
    .scroll-top:hover,
    #togglePanel:hover {
        transform: none !important;
    }

    .btn-primary::before {
        display: none;
    }

    .faq-item::before {
        display: none;
    }
}

/* High Contrast Support */
@media (prefers-contrast: high) {

    .benefit-card,
    .service-item,
    .tool-card,
    .faq-item,
    .stats-card,
    .case-study-card {
        border: 2px solid var(--accent-500) !important;
        background: rgba(0, 0, 0, 0.9) !important;
    }

    .hero-title,
    .section-title {
        background: var(--accent-500) !important;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}

/* Performance Optimizations */
.benefit-card,
.service-item,
.tool-card,
.faq-item {
    will-change: transform;
    transform: translateZ(0);
}

.btn,
.scroll-top,
#togglePanel {
    will-change: transform;
    transform: translateZ(0);
}

/* Enhanced Glass Morphism */
.main-header {
    background: rgba(26, 26, 26, 0.85) !important;
    backdrop-filter: blur(var(--blur-xl)) !important;
    border-bottom: var(--border-accent) !important;
    box-shadow: var(--shadow-lg) !important;
}

.dropdown-menu {
    background: rgba(15, 15, 15, 0.9) !important;
    backdrop-filter: blur(var(--blur-lg)) !important;
    border: var(--border-medium) !important;
    box-shadow: var(--shadow-xl) !important;
}

.nav-overlay {
    background: rgba(15, 15, 15, 0.95) !important;
    backdrop-filter: blur(var(--blur-xl)) !important;
}
