/* ============================================
   SHADOWPAY - HOME PAGE ANIMATIONS & STYLES
   ============================================ */

/* Animations Keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-20px) rotate(-2deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-100px) scale(0.5);
    opacity: 0;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
  }
  50% {
    box-shadow: 0 0 60px rgba(34, 197, 94, 0.6);
  }
}

/* Page Styles */
.home-page {
  background: #0a0a0a;
  overflow-x: hidden;
}

/* Particles Background */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #22c55e;
  border-radius: 50%;
  animation: particleFloat 5s infinite ease-in-out;
  opacity: 0.3;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-logo .green {
  color: #22c55e;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #22c55e;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.btn-nav-secondary {
  padding: 0.6rem 1.25rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-nav-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-nav-primary {
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-nav-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50px;
  color: #22c55e;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.gradient-text {
  background: linear-gradient(135deg, #22c55e 0%, #4ade80 50%, #86efac 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 3s ease infinite;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.hero-stat-suffix {
  font-size: 1.5rem;
  color: #22c55e;
  font-weight: 600;
}

.hero-stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Dashboard Preview */
.hero-dashboard {
  margin-top: 4rem;
  perspective: 1000px;
}

.dashboard-card {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.9),
    rgba(20, 20, 20, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(34, 197, 94, 0.1);
  max-width: 600px;
  transform: rotate(-2deg);
  animation: glow 3s ease-in-out infinite;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dashboard-dots span:nth-child(1) {
  background: #ef4444;
}

.dashboard-dots span:nth-child(2) {
  background: #f59e0b;
}

.dashboard-dots span:nth-child(3) {
  background: #22c55e;
}

.dashboard-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.dashboard-date {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.dashboard-content {
  padding: 1.5rem;
}

.dashboard-top-bar {
  margin-bottom: 1rem;
}

.date-range {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  display: inline-block;
}

.dashboard-section-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.dashboard-stats-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.dash-stat-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.stat-dot.green {
  background: #22c55e;
}

.stat-dot.yellow {
  background: #f59e0b;
}

.stat-dot.red {
  background: #ef4444;
}

.dashboard-chart-area {
  display: flex;
  gap: 0.5rem;
  height: 120px;
  margin-bottom: 1rem;
}

.chart-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
  padding: 0.25rem 0;
  text-align: right;
  min-width: 40px;
}

.chart-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chart-bars-new {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 8px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.bar-group .bar {
  width: 100%;
  max-width: 20px;
  background: linear-gradient(
    to top,
    rgba(34, 197, 94, 0.4),
    rgba(34, 197, 94, 0.7)
  );
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
  animation: barGrow 0.8s ease-out forwards;
}

.bar-group.highlight .bar {
  background: linear-gradient(to top, #22c55e, #4ade80);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.bar-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  color: #fff;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  font-size: 0.65rem;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.bar-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #22c55e;
}

.tooltip-date {
  opacity: 0.8;
  font-size: 0.6rem;
}

.tooltip-value {
  font-weight: 600;
}

.chart-x-axis {
  display: flex;
  justify-content: space-around;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
  padding-top: 0.4rem;
}

.dashboard-highlight-box {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.15),
    rgba(34, 197, 94, 0.05)
  );
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.highlight-date {
  color: #22c55e;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 4px;
}

.highlight-value {
  margin-left: auto;
  color: #22c55e;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Animation Classes */
.animate-fade-down {
  animation: fadeInDown 0.8s ease forwards;
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Trusted Section */
.trusted {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trusted-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trusted-logo {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.trusted-logo:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50px;
  color: #22c55e;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.2;
}

/* Features Section */
.features {
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.5),
    rgba(20, 20, 20, 0.5)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 197, 94, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.feature-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.feature-icon.yellow {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.feature-icon.pink {
  background: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}

.feature-icon.cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(34, 197, 94, 0.03) 50%,
    transparent 100%
  );
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.7),
    rgba(20, 20, 20, 0.7)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(
    145deg,
    rgba(34, 197, 94, 0.1),
    rgba(20, 20, 20, 0.9)
  );
  border-color: rgba(34, 197, 94, 0.3);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pricing-method {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.pricing-rate {
  margin-bottom: 1rem;
}

.pricing-value {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

.pricing-percent {
  font-size: 1.5rem;
  color: #22c55e;
  font-weight: 600;
}

.pricing-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.pricing-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
}

.pricing-badge.instant {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

/* Integrations */
.integrations {
  padding: 6rem 0;
  overflow: hidden;
}

.integrations-marquee {
  margin-top: 3rem;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
}

.marquee-content {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
}

.integration-item {
  flex-shrink: 0;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: all 0.3s ease;
}

.integration-item:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(34, 197, 94, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: rgba(30, 30, 30, 0.5);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.faq-icon {
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: #22c55e;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* CTA Section */
.cta {
  padding: 6rem 0;
}

.cta-content {
  background: linear-gradient(
    145deg,
    rgba(34, 197, 94, 0.1),
    rgba(20, 20, 20, 0.9)
  );
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 32px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(34, 197, 94, 0.1) 0%,
    transparent 50%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
  position: relative;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-logo .green {
  color: #22c55e;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-links h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #22c55e;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 1.5rem;
    z-index: 999;
    overflow-y: auto;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu a {
    display: block;
    padding: 1rem 0;
    color: #fff;
    text-decoration: none;
    font-size: 1.125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu .btn {
    width: 100%;
    margin-top: 1rem;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    padding: 6rem 1rem 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-stat-divider {
    width: 50px;
    height: 1px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  /* Hero adjustments */
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  /* Sections padding */
  section {
    padding: 60px 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  /* Feature cards mobile */
  .feature-card {
    padding: 24px;
  }

  /* Pricing mobile */
  .pricing-card {
    padding: 24px;
  }

  /* FAQ mobile */
  .faq-item {
    padding: 16px 20px;
  }

  /* Integrations mobile */
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .integration-card {
    padding: 16px;
  }

  /* CTA mobile */
  .cta-title {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5rem 1rem 2rem;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .section-title {
    font-size: 1.5rem;
  }

  section {
    padding: 40px 12px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-logo {
    flex-direction: column;
    text-align: center;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  /* Stats animation mobile */
  .hero-stat-value {
    font-size: 2rem;
  }

  .hero-stat-label {
    font-size: 0.8rem;
  }
}
