/* Hero CTA Buttons - Theme Consistent, Centered, Responsive */
.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin: 2.5rem auto 2rem auto;
  flex-wrap: wrap;
  width: 100%;
}

.hero-cta .btn {
  min-width: 180px;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(253,98,13,0.08), 0 1.5px 6px 0 rgba(0,0,0,0.04);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.hero-cta .btn:hover {
  transform: translateY(-2px);
}

.hero-cta .btn-primary {
  background: var(--primary-orange-dark);
  color: #fff;
}

.hero-cta .btn-primary:hover {
  background: var(--primary-orange-light);
  color: #fff;
  box-shadow: 0 0 20px rgba(253, 98, 13, 0.4),
              0 0 40px rgba(253, 98, 13, 0.2),
              0 8px 20px rgba(253, 98, 13, 0.2);
}

.hero-cta .btn-white {
  background: #fff;
  color: var(--primary-orange-dark);
  border: 2px solid var(--primary-orange-dark);
}

.hero-cta .btn-white:hover {
  background: var(--primary-orange-dark);
  color: #fff;
  box-shadow: 0 0 20px rgba(253, 98, 13, 0.3),
              0 0 40px rgba(253, 98, 13, 0.15),
              0 8px 20px rgba(253, 98, 13, 0.15);
}

/* Ripple Effect for Buttons */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes rippleEffect {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Hero Stats Bar */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: auto 1.5rem;
  animation: slideInUp 0.8s ease-out 0.5s both;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Hero Trust Text */
.hero-trust-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.hero-trust-text svg {
  flex-shrink: 0;
  color: #10b981;
}

/* Button Glow Effect */
.btn-glow {
  animation: glow 2s ease-in-out infinite;
  position: relative;
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange-light));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-glow:hover::after {
  opacity: 1;
  animation: pulse 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 1rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-stat-divider {
    height: 35px;
  }

  .hero-trust-text {
    font-size: 0.85rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .hero-subtitle {
  font-size:1rem
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    left: 0;
  }
  .hero-cta .btn {
    width: 100%;
    min-width: 0;
    font-size: 0.95rem;
    padding: 0.95rem 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0rem;
    margin: auto 1.25rem;
    padding: 0 1rem;
  }

  .hero-stat-item {
    gap: 1.25rem;
    flex-direction: row;
  }

  .stat-value {
    font-size: 1.65rem;
  }

  .stat-label {
    font-size: 0.7rem;
    margin-bottom: 0rem !important;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-trust-text {
    text-align: center;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1.25rem;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1.25rem;
  }

  .hero-cards {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .hero-card {
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
  }

  .hero-card-icon svg {
    width: 12px;
    height: 12px;
  }
}
/*
Theme Name: Digital Agents (Optimized)
Theme URI: https://digitalagents.ca
Description: Digital Agents is a cutting-edge AI-Powered WordPress theme designed to showcase the future of digital interaction. With a sleek, modern design and seamless integration of AI features, this theme is perfect for businesses, startups, and innovators looking to create an engaging online presence. Digital Agents offers a dynamic user experience with interactive elements, customizable layouts, and built-in tools that leverage AI to enhance content delivery and user engagement. Whether you're a tech company, creative agency, or entrepreneur, Digital Agents provides the perfect platform to connect with your audience in a meaningful way.
Version: 2.2.0
Author: Shadab Shakeel
Text Domain: digital-agent
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&family=Poppins:wght@400;500;600;700;900&display=swap');

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

:root {
  /* Primary Colors */
  --primary-orange-dark: #FD620D;
  --primary-orange-light: #F13B16;
  
  /* Secondary / Support Colors */
  --secondary-navy-darkest: #040F3D;
  --secondary-navy-dark: #001C61;
  --secondary-navy-mid: #002E7F;
  --secondary-navy-light: #0067B6;
  --secondary-cyan-light: #B9FAF8;
  --secondary-blue-light1: #A4D9F3;
  --secondary-blue-light2: #BBE3F7;
  --secondary-blue-light3: #CBEAF7;
  --secondary-purple: #A8407E;
  
  /* Neutrals for contrast */
  --text-dark: #040F3D;
  --text-light: #FFFFFF;
  --bg-dark: #020617;
  --bg-subtle: #0f172a;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-subtle: rgba(255, 255, 255, 0.05);
}

body {
  font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-weight: 400;
  letter-spacing: 0;
  font-kerning: auto;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.btn-primary {
  background: var(--primary-orange-dark);
  color: white;
}

.btn-primary:hover {
  background: #E05309;
}

.btn-white {
  background: white;
  color: var(--text-dark);
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-weight: 600;
}

.btn-white:hover {
  background: #F0F0F0;
  color: var(--text-dark);
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

/* Navigation */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(2, 6, 23, 0.95);
  border-bottom: 1px solid var(--border-light);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.logo svg {
  width: 100%;
  height: 100%;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-orange-dark);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
  margin: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #f97316, #ef4444);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

.nav-links a:hover {
  color: var(--primary-orange-dark);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Dropdown Menu Styles */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links .dropdown-arrow {
  font-size: 0.625rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

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

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(2, 6, 23, 0.98);
  border: 1px solid rgba(253, 98, 13, 0.2);
  border-radius: 12px;
  padding: 0.75rem 0;
  min-width: 240px;
  list-style: none;
  margin: 0.5rem 0 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(253, 98, 13, 0.1);
  z-index: 1000;
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .dropdown-menu li {
  margin: 0;
  padding: 0;
}

.nav-links .dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 0;
  position: relative;
}

.nav-links .dropdown-menu a::after {
  display: none;
}

.nav-links .dropdown-menu a:hover {
  background: rgba(253, 98, 13, 0.1);
  color: var(--primary-orange-dark);
  padding-left: 1.5rem;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.mobile-dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

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

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 1rem;
  margin-top: 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 500px;
  margin-top: 0.5rem;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}

.mobile-dropdown-menu a:hover {
  color: var(--primary-orange-dark);
  border-left-color: var(--primary-orange-dark);
  padding-left: 1.25rem;
  background: rgba(253, 98, 13, 0.05);
}

.nav-cta {
  display: none;
  gap: 1rem;
}

.nav-cta .btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.nav-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(253, 98, 13, 0.4),
              0 0 40px rgba(253, 98, 13, 0.2),
              0 8px 20px rgba(253, 98, 13, 0.2);
}

.mobile-menu-btn {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn:hover {
  background: rgba(253, 98, 13, 0.15);
  border-color: var(--primary-orange-dark);
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mobile-menu a {
  font-size: 1.35rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  text-transform: capitalize;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  transition: color 0.3s ease;
}

.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #f97316, #ef4444);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu a:hover {
  color: var(--primary-orange-dark);
}

.mobile-menu a:hover::after {
  transform: scaleX(1);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 2rem;
  overflow: visible;
  background: var(--bg-dark);
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 5rem;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding-top: 4.5rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: linear-gradient(180deg,
    #0a0b1a 0%,
    #111329 20%,
    #1a1d3d 40%,
    #1e2247 60%,
    #1a1d3d 80%,
    #0a0b1a 100%
  );
}

/* Neural Network Canvas */
#neuralCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1280px;
  padding: 0 1.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(253, 98, 13, 0.1);
  border: 1px solid var(--primary-orange-dark);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-orange-dark);
  animation: slideInDown 0.6s ease-out;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: slideInDown 0.8s ease-out 0.2s both;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  text-transform: uppercase;
  color: var(--text-light);
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary-orange-dark), var(--secondary-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 100% auto;
}

.typing-cursor {
  background: linear-gradient(90deg, var(--primary-orange-dark), var(--secondary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 300;
  opacity: 1;
  animation: none;
  margin-left: 0.1em;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.3), 0 0 40px rgba(249, 115, 22, 0.1); }
  50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.6), 0 0 80px rgba(249, 115, 22, 0.3); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Animation Entry States */
.will-animate {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.will-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.will-animate:nth-child(2).animate-in {
  animation-delay: 0.1s;
}

.will-animate:nth-child(3).animate-in {
  animation-delay: 0.2s;
}

.will-animate:nth-child(4).animate-in {
  animation-delay: 0.3s;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
  margin: 0 auto 2rem;
  animation: slideInUp 0.8s ease-out 0.4s both;
  font-weight: 400;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.hero-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  opacity: 0.9;
  margin-top: 2rem;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: all 0.3s ;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  animation: floatCard 3s ease-in-out infinite;
}

.hero-card::before {
  display: none;
}

.hero-card:hover {
  border-color: var(--primary-orange-dark);
  background: rgba(253, 98, 13, 0.1);
  box-shadow: 0 0 25px rgba(253, 98, 13, 0.4),
              0 0 50px rgba(253, 98, 13, 0.2),
              0 4px 16px rgba(253, 98, 13, 0.2);
}

.hero-card:nth-child(1) { animation-delay: 0s; }
.hero-card:nth-child(2) { animation-delay: 0.5s; }
.hero-card:nth-child(3) { animation-delay: 1s; }
.hero-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-icon svg {
  width: 14px;
  height: 14px;
  color: var(--primary-orange-dark);
}

/* Section Styles */
section {
  position: relative;
  padding: 2rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(253, 98, 13, 0.1);
  color: var(--primary-orange-dark);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid var(--primary-orange-dark);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  letter-spacing: 0;
}

.section-badge::after {
  display: none;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  margin-bottom: 1rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  text-transform: uppercase;
  color: var(--text-light);
}

.gradient-text-section {
  background: linear-gradient(90deg, var(--primary-orange-dark), var(--secondary-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 100% auto;
}

.section-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
  margin: 0 auto;
  font-weight: 400;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

/* Features Section */
.features-section {
  padding-top: 4rem !important;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-orange-dark);
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(253, 98, 13, 0.4),
              0 0 50px rgba(253, 98, 13, 0.2),
              0 8px 20px rgba(253, 98, 13, 0.2);
}

.feature-card:nth-child(1) {
  --card-gradient: linear-gradient(135deg, #f59e0b, #f97316);
  --card-gradient-color: rgba(245, 158, 11, 0.15);
  --card-shadow-color: rgba(245, 158, 11, 0.3);
}

.feature-card:nth-child(2) {
  --card-gradient: linear-gradient(135deg, #3b82f6, #06b6d4);
  --card-gradient-color: rgba(59, 130, 246, 0.15);
  --card-shadow-color: rgba(59, 130, 246, 0.3);
}

.feature-card:nth-child(3) {
  --card-gradient: linear-gradient(135deg, #8b5cf6, #a855f7);
  --card-gradient-color: rgba(139, 92, 246, 0.15);
  --card-shadow-color: rgba(139, 92, 246, 0.3);
}

.feature-card:nth-child(4) {
  --card-gradient: linear-gradient(135deg, #f97316, #ef4444);
  --card-gradient-color: rgba(249, 115, 22, 0.15);
  --card-shadow-color: rgba(249, 115, 22, 0.3);
}

.feature-card:nth-child(5) {
  --card-gradient: linear-gradient(135deg, #10b981, #14b8a6);
  --card-gradient-color: rgba(16, 185, 129, 0.15);
  --card-shadow-color: rgba(16, 185, 129, 0.3);
}

.feature-card:nth-child(6) {
  --card-gradient: linear-gradient(135deg, #ec4899, #f43f5e);
  --card-gradient-color: rgba(236, 72, 153, 0.15);
  --card-shadow-color: rgba(236, 72, 153, 0.3);
}

.feature-card:nth-child(7) {
  --card-gradient: linear-gradient(135deg, #6366f1, #3b82f6);
  --card-gradient-color: rgba(99, 102, 241, 0.15);
  --card-shadow-color: rgba(99, 102, 241, 0.3);
}

.feature-card:nth-child(8) {
  --card-gradient: linear-gradient(135deg, #d946ef, #ec4899);
  --card-gradient-color: rgba(217, 70, 239, 0.15);
  --card-shadow-color: rgba(217, 70, 239, 0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  color: white;
  z-index: 1;
  transition: all 0.3s ease;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: var(--card-gradient);
  opacity: 1;
  transition: all 0.3s ease;
}

.feature-icon svg {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: translateY(-4px) scale(1.05);
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.feature-card:hover .feature-title {
  color: rgba(255, 255, 255, 1);
}

.feature-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
  color: rgba(255, 255, 255, 0.85);
}

.feature-card-underline {
  margin-top: 1.5rem;
  height: 2px;
  background: var(--card-gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-card-underline {
  transform: scaleX(1);
}

/* Feature Popup - Clean & Sophisticated Design */
.feature-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.feature-popup.active {
  opacity: 1;
  visibility: visible;
}

.feature-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.feature-popup-content {
  position: relative;
  background: #0d0d14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  max-width: 520px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10001;
}

.feature-popup.active .feature-popup-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.feature-popup-close {
  position: absolute !important;
  top: 1.25rem !important;
  right: 1.25rem !important;
  left: auto !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10002;
  padding: 0;
  margin: 0;
}

.feature-popup-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-popup-close svg {
  width: 18px;
  height: 18px;
}

.feature-popup-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.feature-popup-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-popup-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.feature-popup-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  margin: 0;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  line-height: 1.3;
}

.feature-popup-overview {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.feature-popup-benefits {
  margin-bottom: 1.5rem;
}

.feature-popup-benefits h3 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-popup-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-popup-benefits li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-popup-cta {
  padding-top: 0.5rem;
}

.feature-popup-cta .btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border: none;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.feature-popup-cta .btn:hover {
  background: linear-gradient(135deg, #fb923c, #f97316);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

/* Scrollbar styling for popup */
.feature-popup-content::-webkit-scrollbar {
  width: 6px;
}

.feature-popup-content::-webkit-scrollbar-track {
  background: transparent;
}

.feature-popup-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.feature-popup-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .feature-popup-content {
    padding: 1.75rem 1.5rem;
    width: 92%;
    max-height: 90vh;
    border-radius: 14px;
  }

  .feature-popup-header {
    gap: 0.875rem;
    margin-bottom: 1rem;
  }

  .feature-popup-title {
    font-size: 1.2rem;
  }

  .feature-popup-icon {
    width: 44px;
    height: 44px;
  }

  .feature-popup-close {
    top: 1rem !important;
    right: 1rem !important;
    left: auto !important;
    width: 30px;
    height: 30px;
  }

  .feature-popup-close svg {
    width: 14px;
    height: 14px;
  }

  .feature-popup-benefits ul {
    gap: 0.4rem;
  }

  .feature-popup-benefits li {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .feature-popup-overview {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
}

/* How It Works Section */
.how-it-works-section {
  background: linear-gradient(180deg, transparent 0%, rgba(253, 98, 13, 0.03) 50%, transparent 100%);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-orange-dark), var(--secondary-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-orange-dark);
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(253, 98, 13, 0.3),
              0 0 50px rgba(253, 98, 13, 0.15),
              0 8px 20px rgba(253, 98, 13, 0.15);
}

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

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  background: linear-gradient(135deg, var(--primary-orange-dark), var(--secondary-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  line-height: 1;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(253, 98, 13, 0.15), rgba(168, 64, 126, 0.15));
  border: 2px solid rgba(253, 98, 13, 0.3);
  border-radius: 16px;
  color: var(--primary-orange-dark);
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, rgba(253, 98, 13, 0.25), rgba(168, 64, 126, 0.25));
  border-color: var(--primary-orange-dark);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(253, 98, 13, 0.3);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.step-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.demo-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(253, 98, 13, 0.1) 0%, rgba(168, 64, 126, 0.1) 100%);
  border: 2px solid rgba(253, 98, 13, 0.3);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.demo-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(253, 98, 13, 0.05) 0%,
    transparent 50%,
    rgba(168, 64, 126, 0.05) 100%);
  pointer-events: none;
}

.demo-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.demo-btn {
  position: relative;
  z-index: 1;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(253, 98, 13, 0.3);
}

.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(253, 98, 13, 0.5),
              0 0 50px rgba(253, 98, 13, 0.3),
              0 8px 20px rgba(253, 98, 13, 0.3);
}

@media (max-width: 768px) {
  .demo-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .demo-btn {
    width: 100%;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .section-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .section-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Tablet - 3 columns */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* Small Tablet - 2 columns */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .feature-card {
    padding: 1.75rem;
  }
}

/* Mobile - 1 column */
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-title {
    font-size: 1.125rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }

  .step-card {
    padding: 2rem 1.5rem;
  }

  .step-number {
    font-size: 2.5rem;
    top: 1rem;
    right: 1rem;
  }

  .step-title {
    font-size: 1.25rem;
  }

  .step-description {
    font-size: 0.9rem;
  }

  .demo-cta-box h3 {
    font-size: 1.35rem !important;
  }

  .demo-cta-box p {
    font-size: 0.95rem !important;
  }
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.benefits-list {
  display: grid;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefit-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-orange-dark), var(--primary-orange-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(253, 98, 13, 0.05));
  border-color: rgba(253, 98, 13, 0.4);
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(253, 98, 13, 0.15);
}

.benefit-item:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(253, 98, 13, 0.15), rgba(241, 58, 22, 0.15));
  border: 1px solid rgba(253, 98, 13, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(253, 98, 13, 0.1);
}

.benefit-icon::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(253, 98, 13, 0.4), rgba(241, 58, 22, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  background: linear-gradient(135deg, rgba(253, 98, 13, 0.25), rgba(241, 58, 22, 0.25));
  border-color: rgba(253, 98, 13, 0.5);
  box-shadow: 0 6px 20px rgba(253, 98, 13, 0.2);
  transform: scale(1.05);
}

.benefit-item:hover .benefit-icon::before {
  opacity: 1;
}

.benefit-icon svg {
  color: var(--primary-orange-dark);
  stroke-width: 2.5;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon svg {
  color: var(--primary-orange-light);
  stroke-width: 3;
}

.benefit-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.benefit-item:hover .benefit-text {
  color: rgba(255, 255, 255, 0.95);
}

/* Statistics Section */
.stats-section {
  background: linear-gradient(135deg, rgba(253, 98, 13, 0.05) 0%, rgba(168, 64, 126, 0.05) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange-dark), var(--secondary-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-orange-dark);
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(253, 98, 13, 0.3),
              0 0 50px rgba(253, 98, 13, 0.15),
              0 8px 20px rgba(253, 98, 13, 0.15);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(253, 98, 13, 0.15), rgba(168, 64, 126, 0.15));
  border: 2px solid rgba(253, 98, 13, 0.3);
  border-radius: 16px;
  color: var(--primary-orange-dark);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: linear-gradient(135deg, rgba(253, 98, 13, 0.25), rgba(168, 64, 126, 0.25));
  border-color: var(--primary-orange-dark);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(253, 98, 13, 0.3);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  background: linear-gradient(135deg, var(--primary-orange-dark), var(--secondary-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.stat-description {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  display: none;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-orange-dark);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 25px rgba(253, 98, 13, 0.4),
              0 0 50px rgba(253, 98, 13, 0.2),
              0 8px 20px rgba(253, 98, 13, 0.2);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star {
  color: var(--primary-orange-dark);
  width: 16px;
  height: 16px;
}

.testimonial-content {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 1rem;
}

.revenue-badge {
  padding: 0.25rem 0.75rem;
  background: rgba(253, 98, 13, 0.15);
  border: 1px solid var(--primary-orange-dark);
  border-radius: 6px;
  color: var(--primary-orange-dark);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.pricing-card::before {
  display: none;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-orange-dark);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 25px rgba(253, 98, 13, 0.4),
              0 0 50px rgba(253, 98, 13, 0.2),
              0 8px 20px rgba(253, 98, 13, 0.2);
}

.pricing-card.popular {
  background: linear-gradient(180deg, rgba(253, 98, 13, 0.15) 0%, rgba(168, 64, 126, 0.08) 100%);
  border-color: var(--primary-orange-dark);
  transform: translateY(-20px);
}

.pricing-card.popular:hover {
  transform: translateY(-28px);
  box-shadow: 0 0 30px rgba(253, 98, 13, 0.5),
              0 0 60px rgba(253, 98, 13, 0.3),
              0 8px 24px rgba(253, 98, 13, 0.3);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: var(--primary-orange-dark);
  border-radius: 6px;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  margin: 2rem 0;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
}

.pricing-features li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}



/* Integrations Section */
.integrations-section {
  background: linear-gradient(180deg,
    rgba(253, 98, 13, 0.02) 0%,
    rgba(168, 64, 126, 0.02) 100%);
}

.integration-categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

.integration-category {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.integration-category:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(253, 98, 13, 0.3);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(253, 98, 13, 0.15), rgba(168, 64, 126, 0.15));
  border: 1px solid rgba(253, 98, 13, 0.3);
  border-radius: 12px;
  color: var(--primary-orange-dark);
}

.category-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: white;
  margin: 0;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.integration-grid-category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.integration-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--tool-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.integration-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--tool-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.integration-badge:hover::before {
  opacity: 1;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--tool-color);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--tool-color);
}

.badge-status {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--primary-orange-dark);
  background: rgba(253, 98, 13, 0.15);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 0.25rem;
}

.integration-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(253, 98, 13, 0.1) 0%, rgba(168, 64, 126, 0.1) 100%);
  border: 2px solid rgba(253, 98, 13, 0.3);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.integration-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(253, 98, 13, 0.05) 0%,
    transparent 50%,
    rgba(168, 64, 126, 0.05) 100%);
  pointer-events: none;
}

.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(253, 98, 13, 0.2), rgba(168, 64, 126, 0.2));
  border: 2px solid rgba(253, 98, 13, 0.4);
  border-radius: 16px;
  color: var(--primary-orange-dark);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cta-content-inline {
  flex: 1;
  position: relative;
  z-index: 1;
}

.integration-cta .btn {
  position: relative;
  z-index: 1;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(253, 98, 13, 0.3);
  white-space: nowrap;
}

.integration-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(253, 98, 13, 0.5),
              0 0 50px rgba(253, 98, 13, 0.3),
              0 8px 20px rgba(253, 98, 13, 0.3);
}

@media (max-width: 768px) {
  .integration-categories {
    gap: 2rem;
  }

  .integration-category {
    padding: 1.5rem;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .category-title {
    font-size: 1.125rem;
  }

  .integration-grid-category {
    gap: 0.5rem;
  }

  .integration-badge {
    font-size: 0.8125rem;
    padding: 0.5rem 0.75rem;
  }

  .integration-cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .integration-cta .btn {
    width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .benefit-item {
    padding: 1.25rem;
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    gap: 1.25rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-content {
    font-size: 0.9rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-description {
    font-size: 0.875rem;
  }

  .benefit-item {
    padding: 1rem;
    gap: 1rem;
  }

  .benefit-text {
    font-size: 0.9rem;
  }

  .integration-category {
    padding: 1.25rem;
  }

  .integration-badge {
    font-size: 0.75rem;
    padding: 0.45rem 0.65rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 1.25rem;
  }

  .faq-answer-content {
    font-size: 0.875rem;
    padding: 0 1.25rem 1.25rem;
  }
}

/* FAQ */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-orange-dark);
  background: rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: white;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg,
    rgba(253, 98, 13, 0.25) 0%,
    rgba(241, 59, 22, 0.22) 50%,
    rgba(168, 64, 126, 0.25) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 11, 26, 0.3) 0%, transparent 20%, transparent 80%, rgba(10, 11, 26, 0.3) 100%);
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  text-transform: uppercase;
  color: var(--text-light);
}

.cta-description {
  font-size: 1.25rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
  font-weight: 400;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  color: var(--text-light);
}

.cta-button-container {
}

.cta-section .btn {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(253, 98, 13, 0.4),
              0 0 40px rgba(253, 98, 13, 0.2),
              0 8px 20px rgba(253, 98, 13, 0.2);
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 400;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.trust-elements {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(253, 98, 13, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(253, 98, 13, 0.3);
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  grid-column: span 2;
}

.footer-links h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  text-transform: capitalize;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 2;
  transition: color 0.3s ease;
  font-weight: 400;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.footer-links a:hover {
  color: var(--primary-orange-dark);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
}

.social-link:hover {
  background: var(--primary-orange-dark);
  color: white;
}

/* Responsive */
@media (min-width: 768px) {
  .nav-links, .nav-cta { display: flex; }
  .mobile-menu-btn { display: none; }
  .hero-cta { flex-direction: row; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .section-title { font-size: 2rem; }
  .footer-brand { grid-column: span 1; }
}

/* Pricing Cards Enhancement */
.pricing-header {
  animation: slideInDown 0.6s ease-out;
}

.pricing-price {
  animation: scaleIn 0.6s ease-out 0.1s both;
}

.pricing-features {
  animation: slideInUp 0.6s ease-out 0.2s both;
}

.pricing-cta {
  animation: pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(253, 98, 13, 0.4),
              0 0 40px rgba(253, 98, 13, 0.2),
              0 8px 20px rgba(253, 98, 13, 0.2);
  animation: none;
}

/* Check Icon */
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--primary-orange-dark);
  border-radius: 50%;
  flex-shrink: 0;
}

/* FAQ Icon */
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(253, 98, 13, 0.15);
  border-radius: 50%;
  font-weight: 700;
  color: var(--primary-orange-dark);
  flex-shrink: 0;
}

/* Smooth Hover Effects */
a {
  transition: color 0.3s ease;
}

/* Responsive Animations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Additional Mobile Optimizations */
@media (max-width: 600px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  section {
    padding: 3rem 0;
  }

  .navbar-container {
    height: 70px;
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
  }

  .cta-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .cta-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .integration-cta h4 {
    font-size: 1.125rem !important;
  }

  .integration-cta p {
    font-size: 0.9rem !important;
  }

  /* Better touch targets */
  .btn {
    min-height: 44px;
    padding: 0.95rem 1.75rem;
  }

  .feature-icon,
  .step-icon,
  .stat-icon {
    width: 56px;
    height: 56px;
  }

  .feature-icon svg,
  .step-icon svg,
  .stat-icon svg {
    width: 26px;
    height: 26px;
  }

  /* Improved readability */
  body {
    font-size: 16px;
    line-height: 1.35;
  }

  h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
  }
}

/* Extra Small Devices */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.9rem 1.5rem;
  }
}

/* ========================================
   MOBILE-FIRST FEATURE PAGES OPTIMIZATION
   ======================================== */

/* Mobile Base (max-width: 768px) */
@media (max-width: 768px) {

  /* === HERO SECTIONS === */
  .appointment-hero,
  .voice-hero,
  .customer-hero,
  .sales-hero,
  .copywriter-hero,
  .social-hero,
  .followup-hero,
  .custom-hero,
  [class*="-hero"] {
    min-height: auto !important;
    /* padding: 6rem 0 3rem !important; */
  }

  .hero-content-appointment,
  .hero-content-voice,
  [class*="hero-content"] {
    padding: 0 1rem !important;
  }

  .hero-title,
  [class*="hero"] h1 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
    margin: 1rem 0 !important;
  }

  .hero-subtitle,
  [class*="hero"] .hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 2rem !important;
  }

  .hero-badge-appointment,
  [class*="hero-badge"] {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.75rem !important;
  }

  /* Hero CTA Buttons */
  .hero-cta {
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }

  .hero-cta .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 1rem 1.5rem !important;
    font-size: 0.95rem !important;
  }

  /* Background animations - reduce on mobile */
  .calendar-grid,
  .wave-grid,
  [class*="-grid"]:not(.features-grid):not(.impact-grid):not(.faq-grid):not(.benefits-grid) {
    opacity: 1 !important;
  }

  /* === SECTION HEADERS === */
  .section-header {
    padding: 0 0.5rem !important;
    margin-bottom: 2rem !important;
  }

  .section-badge {
    font-size: 0.75rem !important;
    padding: 0.35rem 0.7rem !important;
    margin-bottom: 0.75rem !important;
  }

  .section-title {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.75rem !important;
  }

  .section-description {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    padding: 0 0.5rem !important;
  }

  /* === SECTIONS PADDING === */
  /* section,
  [class*="-section"] {
    padding: 3rem 0 !important;
  } */

  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* === TIMELINE SECTIONS === */
  .benefits-timeline {
    margin-top: 2rem !important;
    padding: 1rem 0 !important;
  }

  .timeline-line {
    left: 20px !important;
    width: 2px !important;
  }

  .timeline-item,
  .timeline-item.timeline-left,
  .timeline-item.timeline-right {
    padding-left: 50px ;
    padding-right: 0 !important;
    margin-bottom: 1.5rem ;
  }

  .timeline-connector {
    display: none !important;
  }

  .timeline-content {
    padding: 1.25rem !important;
    border-radius: 12px !important;
    max-width: 100% !important;
  }

  .timeline-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    margin-bottom: 1rem !important;
  }

  .timeline-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .timeline-title {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }

  .timeline-description {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
  }

  /* === IMPACT/STATS CARDS === */
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem ;
  }

  .impact-card {
    padding: 1.5rem ;
    border-radius: 16px ;
  }

  .impact-icon-wrapper {
    width: 60px ;
    height: 60px ;
    margin-bottom: 1rem ;
    border-radius: 14px ;
  }

  .impact-icon-wrapper svg {
    width: 28px ;
    height: 28px ;
  }

  .impact-number {
    font-size: 2.5rem ;
    margin-bottom: 0.25rem ;
  }

  .impact-label {
    font-size: 1rem ;
    margin-bottom: 0.5rem ;
  }

  .impact-description {
    font-size: 0.85rem ;
    line-height: 1.5 ;
  }

  /* === HOW IT WORKS / FLOW STEPS === */
  .circular-flow {
    flex-direction: column !important;
    gap: 1.5rem !important;
    margin-top: 2rem !important;
  }

  .flow-connector {
    display: none !important;
  }

  .flow-step {
    width: 100% !important;
  }

  .flow-step-inner {
    padding: 1.5rem !important;
    border-radius: 16px !important;
  }

  .flow-number {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.1rem !important;
    top: -12px !important;
    right: 12px !important;
  }

  .flow-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 16px !important;
    margin-bottom: 1rem !important;
  }

  .flow-icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  .flow-title {
    font-size: 1.15rem !important;
    margin-bottom: 0.5rem !important;
  }

  .flow-description {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
  }

  /* === FAQ SECTIONS === */
  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    margin-top: 2rem !important;
  }

  .faq-item-appointment,
  [class*="faq-item"] {
    border-radius: 12px !important;
  }


  .faq-icon-appointment,
  [class*="faq-icon"] {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
  }

  .faq-icon-appointment svg,
  [class*="faq-icon"] svg {
    width: 16px !important;
    height: 16px !important;
  }

  .faq-question-text-appointment,
  [class*="faq-question-text"] {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }

  .faq-answer-content-appointment,
  [class*="faq-answer-content"] {
    padding: 0 1rem 1rem 1rem !important;
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
  }

  /* === CTA SECTIONS === */
  .appointment-cta-section,
  [class*="-cta-section"] {
    padding: 3rem 0 !important;
  }

  .cta-content-appointment,
  [class*="cta-content"] {
    padding: 0 1rem !important;
  }

  .cta-badge-appointment,
  [class*="cta-badge"] {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.75rem !important;
    margin-bottom: 1.25rem !important;
  }

  .cta-title,
  [class*="cta"] h2 {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }

  .cta-description,
  [class*="cta"] p:not(.cta-note) {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.5rem !important;
  }

  .cta-button-container .btn {
    width: 100% !important;
    padding: 1rem 1.5rem !important;
    font-size: 0.95rem !important;
  }

  .cta-note {
    font-size: 0.8rem !important;
    margin-top: 1rem !important;
  }

  /* CTA background animations */
  .cta-calendar-animation,
  [class*="cta-"][class*="-animation"] {
    opacity: 0.05 !important;
  }

  /* === BENEFITS GRID === */
  .benefits-list {
    gap: 0.75rem !important;
  }

  .benefit-item {
    padding: 1rem !important;
    border-radius: 10px !important;
    gap: 1rem !important;
  }

  .benefit-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
  }

  .benefit-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .benefit-text h3 {
    font-size: 1rem !important;
    margin-bottom: 0.25rem !important;
  }

  .benefit-text p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }

  /* === STEP CARDS === */
  .how-it-works-grid {
    gap: 1rem !important;
  }

  .step-card {
    padding: 1.5rem 1.25rem !important;
    border-radius: 14px !important;
  }

  .step-number {
    font-size: 2rem !important;
    top: 0.75rem !important;
    right: 0.75rem !important;
  }

  .step-icon {
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 1rem !important;
    border-radius: 12px !important;
  }

  .step-title {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }

  .step-description {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
  }

  /* === PRICING CARDS === */
  .pricing-grid {
    gap: 1rem !important;
  }

  .pricing-card {
    padding: 1.5rem !important;
    border-radius: 14px !important;
  }

  .pricing-card.popular {
    transform: none !important;
  }

  /* === TESTIMONIALS === */
  .testimonials-grid {
    gap: 1rem !important;
  }

  .testimonial-card {
    padding: 1.25rem !important;
    border-radius: 12px !important;
  }

  .testimonial-content {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
  }

  .testimonial-author img {
    width: 40px !important;
    height: 40px !important;
  }

  .author-name {
    font-size: 0.9rem !important;
  }

  .author-role {
    font-size: 0.8rem !important;
  }

  /* === GRADIENT TEXT === */
  .gradient-text,
  .gradient-text-section {
    background-size: 100% !important;
  }

  /* === BUTTONS GLOBAL === */
  .btn {
    padding: 0.875rem 1.5rem !important;
    font-size: 0.9rem !important;
    border-radius: 10px !important;
  }

  .btn-large {
    padding: 1rem 1.75rem !important;
    font-size: 0.95rem !important;
  }

  .btn svg {
    width: 18px !important;
    height: 18px !important;
  }

  /* === DISABLE HEAVY ANIMATIONS ON MOBILE === */
  .calendar-slot,
  .cta-slot,
  .wave-particle,
  [class*="particle"],
  [class*="pulse"] {
    animation-duration: 8s !important;
  }

  /* Reduce motion for better performance */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* === FOOTER MOBILE === */
  .site-footer {
    padding: 2.5rem 0 1.5rem !important;
    background: linear-gradient(180deg, #0a0b1a 0%, #0d0e1c 100%) !important;
    border-top: 1px solid rgba(253, 98, 13, 0.2) !important;
  }

  .site-footer .container {
    padding: 0 1.25rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    margin-bottom: 1.5rem !important;
  }

  .footer-brand {
    grid-column: span 1 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer-brand .logo {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 1rem !important;
  }

  .footer-brand p {
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 300px !important;
    margin: 0 auto 1.25rem !important;
    text-align: center !important;
  }

  /* Footer contact info in brand section */
  .footer-brand > div:last-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer-brand > div:last-child a,
  .footer-brand > div:last-child > div {
    justify-content: center !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.875rem !important;
  }

  .footer-brand > div:last-child svg {
    color: #f97316 !important;
    stroke: #f97316 !important;
  }

  .footer-links {
    text-align: center !important;
    padding: 1.25rem 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .footer-links h4 {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
    color: white !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }

  .footer-links ul {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.75rem 1.5rem !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .footer-links li {
    list-style: none !important;
  }

  .footer-links a {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
    padding: 0.25rem 0 !important;
    transition: color 0.2s ease !important;
  }

  .footer-links a:hover {
    color: #f97316 !important;
  }

  .footer-contact {
    text-align: center !important;
  }

  .footer-contact p,
  .footer-contact a {
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding-top: 0rem !important;
    margin-top: 0.5rem !important;
    border-top: 0px solid rgba(255, 255, 255, 0.08) !important;
    gap: 1.25rem !important;
  }

  .footer-bottom p {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.65) !important;
    order: 2 !important;
    margin: 0 !important;
  }

  .social-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    order: 1 !important;
    gap: 1rem !important;
  }

  .social-link {
    width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(239, 68, 68, 0.1) 100%) !important;
    border: 1px solid rgba(253, 98, 13, 0.3) !important;
    border-radius: 50% !important;
    color: white !important;
    transition: all 0.3s ease !important;
  }

  .social-link:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3) 0%, rgba(239, 68, 68, 0.2) 100%) !important;
    border-color: rgba(253, 98, 13, 0.5) !important;
    transform: translateY(-2px) !important;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {

  .hero-title,
  [class*="hero"] h1 {
    font-size: 1.5rem !important;
  }

  .section-title {
    font-size: 1.35rem !important;
  }

  .cta-title,
  [class*="cta"] h2 {
    font-size: 1.35rem !important;
  }

  .impact-number {
    font-size: 2rem !important;
  }

  .timeline-content {
    padding: 1rem !important;
  }

  .flow-step-inner {
    padding: 1.25rem !important;
  }

  .faq-question-text-appointment,
  [class*="faq-question-text"] {
    font-size: 0.875rem !important;
  }

  /* Footer 480px */
  .site-footer {
    padding: 2rem 0 1.25rem !important;
  }

  .site-footer .container {
    padding: 0 1rem !important;
  }

  .footer-grid {
    gap: 1.5rem !important;
  }

  .footer-brand p {
    font-size: 0.8rem !important;
    max-width: 260px !important;
    margin-bottom: 1rem !important;
  }

  .footer-brand > div:last-child a,
  .footer-brand > div:last-child > div {
    font-size: 0.8rem !important;
  }

  .footer-links {
    padding: 1rem 0 !important;
  }

  .footer-links h4 {
    font-size: 0.9rem !important;
    margin-bottom: 0.75rem !important;
  }

  .footer-links ul {
    gap: 0.5rem 1rem !important;
  }

  .footer-links a {
    font-size: 0.8rem !important;
  }

  .footer-bottom {
    padding-top: 0rem !important;
    gap: 1rem !important;
  }

  .footer-bottom p {
    font-size: 0.75rem !important;
  }

}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {

  .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .hero-title,
  [class*="hero"] h1 {
    font-size: 1.35rem !important;
  }

  .hero-subtitle {
    font-size: 0.9rem !important;
  }

  .section-title {
    font-size: 1.25rem !important;
  }

  .btn {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.85rem !important;
  }

  .impact-card {
    padding: 1.25rem !important;
  }

  .timeline-item,
  .timeline-item.timeline-left,
  .timeline-item.timeline-right {
    padding-left: 40px !important;
  }

  .timeline-line {
    left: 15px !important;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {

  .appointment-hero,
  [class*="-hero"] {
    min-height: auto !important;
    padding: 4rem 0 2rem !important;
  }

  .hero-cta {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }

  .hero-cta .btn {
    width: auto !important;
    flex: 1 1 45% !important;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .circular-flow {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }

  .flow-step {
    flex: 1 1 45% !important;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {

  /* Larger touch targets */
  .btn,
  button,
  a {
    min-height: 44px;
  }
/* 
  .faq-question-appointment,
  [class*="faq-question"] {
    min-height: 56px;
  } */

  /* Remove hover effects on touch devices */
  .feature-card:hover,
  .impact-card:hover,
  .timeline-content:hover,
  .flow-step-inner:hover,
  .step-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  /* Add active states instead */
  .feature-card:active,
  .impact-card:active,
  .timeline-content:active,
  .flow-step-inner:active,
  .step-card:active {
    transform: scale(0.98) !important;
    opacity: 0.9;
  }
}