/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #0d0d0d;
  color: #f9f9f9;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Typography */
.gradient-text {
  background: linear-gradient(135deg, #32d296 0%, #28b882 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-accent {
  color: #32d296;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1;
  gap: 0.5rem;
}

.btn-primary {
  background-color: #32d296;
  color: #000;
}

.btn-primary:hover {
  background-color: #28b882;
  transform: scale(1.05);
}

.btn-outline {
  background-color: transparent;
  color: #32d296;
  border: 2px solid #32d296;
}

.btn-outline:hover {
  background-color: #32d296;
  color: #000;
}

.btn-ghost {
  background-color: transparent;
  color: #d1d5db;
}

.btn-ghost:hover {
  color: #32d296;
  background-color: transparent;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

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

.btn-primary:hover .btn-arrow {
  transform: translateX(0.25rem);
}

.btn-play {
  transition: transform 0.3s ease;
}

.btn-outline:hover .btn-play {
  transform: scale(1.1);
}

/* Section Badges */
.section-badge {
  display: inline-block;
  background-color: rgba(50, 210, 150, 0.1);
  border: 1px solid rgba(50, 210, 150, 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.badge-text {
  color: #32d296;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 114, 128, 0.5);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 2.5rem;
  height: 2.5rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f9f9f9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #d1d5db;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #32d296;
}

.nav-chevron {
  width: 1rem;
  height: 1rem;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #f9f9f9;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-icon,
.close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-nav {
  background-color: #1a1a1a;
  border-top: 1px solid #374151;
  padding: 1rem 0;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: #d1d5db;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #32d296;
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid #374151;
  margin-top: 1rem;
}

.mobile-btn {
  justify-content: flex-start;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Hidden utility */
.hidden {
  display: none !important;
}

/* Main Content */
.main-content {
  min-height: 100vh;
  background-color: #0d0d0d;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23374151' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-decoration-1 {
  top: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background-color: #32d296;
  opacity: 0.2;
}

.hero-decoration-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 10rem;
  height: 10rem;
  background-color: #f65e3b;
  opacity: 0.2;
  animation-delay: 1s;
}

.hero-decoration-3 {
  top: 50%;
  left: 25%;
  width: 6rem;
  height: 6rem;
  background-color: #a855f7;
  opacity: 0.1;
  animation: bounce 3s ease-in-out infinite;
}

.hero-container {
  position: relative;
  z-index: 10;
  padding: 5rem 1rem;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #1a1a1a;
  border: 1px solid rgba(50, 210, 150, 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  width: 1rem;
  height: 1rem;
  color: #32d296;
  fill: currentColor;
}

.trust-text {
  font-size: 0.875rem;
  color: #d1d5db;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 32rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero-features {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.hero-feature:hover {
  transform: translateX(0.25rem);
}

.feature-icon {
  background-color: #1a1a1a;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.hero-feature:hover .feature-icon {
  background-color: #2a2a2a;
}

.feature-icon-green {
  color: #32d296;
}

.feature-icon-red {
  color: #f65e3b;
}

.feature-icon-purple {
  color: #a855f7;
}

.feature-icon-blue {
  color: #3b82f6;
}

.feature-text {
  color: #d1d5db;
  transition: color 0.3s ease;
}

.hero-feature:hover .feature-text {
  color: #f9f9f9;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.hero-btn-primary {
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  transform: scale(1.05);
}

.hero-btn-outline {
  transition: all 0.3s ease;
}

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

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  transition: all 0.5s ease;
}

.stat-item.active {
  transform: scale(1.1);
  opacity: 1;
}

.stat-item:not(.active) {
  opacity: 0.7;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #32d296;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 1.875rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Hero Mockup */
.hero-mockup {
  position: relative;
}

.dashboard-mockup {
  position: relative;
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #4b5563;
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.browser-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.dot-red {
  background-color: #ef4444;
}

.dot-yellow {
  background-color: #eab308;
}

.dot-green {
  background-color: #22c55e;
}

.browser-url {
  flex: 1;
  background-color: #4b5563;
  border-radius: 0.25rem;
  padding: 0.25rem 0.75rem;
  margin-left: 1rem;
}

.url-text {
  font-size: 0.75rem;
  color: #9ca3af;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dashboard-icon {
  width: 2rem;
  height: 2rem;
  background-color: #32d296;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.dashboard-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dashboard-title {
  width: 6rem;
  height: 0.75rem;
  background-color: #4b5563;
  border-radius: 0.25rem;
}

.dashboard-subtitle {
  width: 4rem;
  height: 0.5rem;
  background-color: #4b5563;
  border-radius: 0.25rem;
  margin-top: 0.25rem;
}

.status-indicator {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #32d296;
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.message-sent {
  justify-content: flex-end;
}

.message-avatar {
  width: 2rem;
  height: 2rem;
  background-color: #4b5563;
  border-radius: 50%;
}

.message-content {
  flex: 1;
  display: flex;
}

.message-sent .message-content {
  justify-content: flex-end;
}

.message-bubble {
  background-color: #4b5563;
  border-radius: 0.5rem;
  padding: 0.75rem;
  max-width: 75%;
}

.message-bubble.sent {
  background-color: #32d296;
}

.message-line {
  height: 0.5rem;
  background-color: #6b7280;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
  width: 8rem;
}

.message-bubble.sent .message-line {
  background-color: rgba(0, 0, 0, 0.2);
}

.message-line.short {
  width: 6rem;
  margin-bottom: 0;
}

.bot-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.bot-icon {
  width: 1rem;
  height: 1rem;
  color: #32d296;
}

.bot-text {
  font-size: 0.75rem;
}

.typing-dots {
  display: flex;
  gap: 0.25rem;
}

.typing-dot {
  width: 0.25rem;
  height: 0.25rem;
  background-color: #32d296;
  border-radius: 50%;
  animation: bounce 1.4s ease-in-out infinite both;
}

.typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

.mobile-mockup {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background-color: #1a1a1a;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
  border: 1px solid #4b5563;
  width: 10rem;
}

.mobile-message {
  background-color: #32d296;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
}

.mobile-message-line {
  height: 0.5rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
  width: 100%;
}

.mobile-message-line.short {
  width: 75%;
  margin-bottom: 0;
}

.mobile-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-stat-line {
  height: 0.25rem;
  background-color: #4b5563;
  border-radius: 0.25rem;
  width: 100%;
}

.mobile-stat-line.medium {
  width: 66.666667%;
}

.mobile-stat-line.short {
  width: 50%;
}

.floating-stat {
  position: absolute;
  top: -1rem;
  left: -1rem;
  background-color: #32d296;
  padding: 0.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.floating-stat-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-stat-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #000;
}

.floating-stat-text {
  color: #000;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Trust Section */
.trust-section {
  padding: 4rem 0;
  background-color: #1a1a1a;
  border-top: 1px solid #374151;
  border-bottom: 1px solid #374151;
}

.trust-header {
  text-align: center;
  margin-bottom: 3rem;
}

.trust-subtitle {
  color: #9ca3af;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #32d296;
}

.trust-number {
  font-size: 1.5rem;
  font-weight: 800;
}

.trust-label {
  color: #d1d5db;
}

.companies-scroll {
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

.companies-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

.company-logo {
  flex-shrink: 0;
  margin: 0 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #0d0d0d;
  border-radius: 0.5rem;
  border: 1px solid #374151;
  color: #d1d5db;
  font-weight: 500;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.company-logo:hover {
  border-color: rgba(50, 210, 150, 0.3);
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .trust-indicators {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.indicator-number {
  font-size: 1.875rem;
  font-weight: 800;
  color: #32d296;
  margin-bottom: 0.5rem;
}

.indicator-label {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background-color: #0d0d0d;
}

.about-content {
  max-width: 72rem;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-0.25rem);
}

.benefit-icon {
  background: linear-gradient(135deg, #32d296 0%, #28b882 100%);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.05);
}

.benefit-icon-green {
  background: linear-gradient(135deg, #32d296 0%, #28b882 100%);
  color: #000;
}

.benefit-icon-red {
  background: linear-gradient(135deg, #f65e3b 0%, #e54e2e 100%);
  color: #fff;
}

.benefit-icon-purple {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  color: #fff;
}

.benefit-icon svg {
  width: 3rem;
  height: 3rem;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 1rem;
}

.benefit-description {
  color: #d1d5db;
  line-height: 1.6;
}

.detailed-features {
  background-color: #1a1a1a;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #374151;
}

@media (min-width: 768px) {
  .detailed-features {
    padding: 3rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.features-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 1.5rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-check {
  width: 1.5rem;
  height: 1.5rem;
  color: #32d296;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-text {
  color: #d1d5db;
  font-size: 1.125rem;
}

.features-mockup {
  position: relative;
}

.mockup-container {
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.mockup-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #32d296;
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.status-text {
  color: #f9f9f9;
  font-weight: 500;
}

.uptime-text {
  color: #32d296;
  font-size: 0.875rem;
}

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stat-card {
  background-color: #0d0d0d;
  border-radius: 0.5rem;
  padding: 1rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #32d296;
}

.stat-value-red {
  color: #f65e3b;
}

.stat-label {
  color: #9ca3af;
  font-size: 0.875rem;
}

.mockup-progress {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.progress-label {
  color: #9ca3af;
}

.progress-value {
  color: #32d296;
}

.progress-bar {
  width: 100%;
  background-color: #4b5563;
  border-radius: 9999px;
  height: 0.5rem;
}

.progress-fill {
  background-color: #32d296;
  height: 0.5rem;
  border-radius: 9999px;
  width: 87%;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background-color: #1a1a1a;
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: #0d0d0d;
  color: #d1d5db;
  border: 1px solid #4b5563;
  cursor: pointer;
}

.tab-button:hover {
  background-color: #2a2a2a;
}

.tab-button.active {
  background-color: #32d296;
  color: #000;
  border-color: #32d296;
}

.tab-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-content {
  position: relative;
}

.feature-category {
  display: none;
}

.feature-category.active {
  display: block;
}

.feature-card {
  background-color: #0d0d0d;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(50, 210, 150, 0.3);
  transform: translateY(-0.25rem);
}

.feature-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-card-icon {
  background-color: #32d296;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

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

.feature-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #000;
}

.feature-card-content {
  flex: 1;
}

.feature-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 0.75rem;
}

.feature-card-description {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefit-dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #32d296;
  border-radius: 50%;
}

.benefit-text {
  color: #9ca3af;
  font-size: 0.875rem;
}

.additional-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 1024px) {
  .additional-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.additional-feature {
  background-color: #0d0d0d;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
  text-align: center;
}

.additional-feature:hover {
  border-color: rgba(50, 210, 150, 0.3);
}

.additional-feature-icon {
  background-color: #1a1a1a;
  padding: 0.75rem;
  border-radius: 0.5rem;
  width: fit-content;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.additional-feature:hover .additional-feature-icon {
  background-color: #32d296;
}

.additional-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #32d296;
  transition: color 0.3s ease;
}

.additional-feature:hover .additional-feature-icon svg {
  color: #000;
}

.additional-feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f9f9f9;
  margin-bottom: 0.5rem;
}

.additional-feature-desc {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Comparison Section */
.comparison-section {
  padding: 6rem 0;
  background-color: #0d0d0d;
}

.comparison-table-container {
  overflow-x: auto;
  margin-bottom: 3rem;
}

.comparison-table {
  min-width: 800px;
  background-color: #1a1a1a;
  border-radius: 1rem;
  border: 1px solid #374151;
  overflow: hidden;
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #374151;
}

.comparison-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-cell {
  color: #f9f9f9;
  font-weight: 600;
  justify-content: flex-start;
}

.competitor-cell {
  flex-direction: column;
  gap: 0.5rem;
}

.competitor-logo {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background-color: #4b5563;
  color: #d1d5db;
}

.our-logo {
  background-color: #32d296;
  color: #000;
}

.competitor-name {
  font-weight: 600;
  color: #f9f9f9;
}

.our-name {
  color: #32d296;
}

.star-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.star-icon {
  width: 1rem;
  height: 1rem;
  color: #32d296;
  fill: currentColor;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #374151;
}

.comparison-row:nth-child(even) {
  background-color: rgba(13, 13, 13, 0.5);
}

.check-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #22c55e;
}

.our-check {
  color: #32d296;
}

.cross-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cross-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #ef4444;
}

.price-row {
  border-bottom: none;
}

.price-cell {
  font-weight: 600;
  font-size: 0.875rem;
  color: #d1d5db;
}

.our-price {
  color: #32d296;
}

.comparison-cta {
  text-align: center;
  margin-top: 3rem;
}

.comparison-cta-text {
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.comparison-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.rating-text {
  color: #f9f9f9;
  font-weight: 600;
}

/* Integrations Section */
.integrations-section {
  padding: 6rem 0;
  background-color: #1a1a1a;
}

.integration-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.integration-content {
  position: relative;
  margin-bottom: 5rem;
}

.integration-category {
  display: none;
}

.integration-category.active {
  display: block;
}

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

@media (min-width: 1024px) {
  .integrations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.integration-card {
  background-color: #0d0d0d;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
  cursor: pointer;
}

.integration-card:hover {
  border-color: rgba(50, 210, 150, 0.3);
}

.integration-icon {
  width: 3rem;
  height: 3rem;
  background-color: #32d296;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #000;
  font-weight: 700;
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

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

.integration-name {
  color: #f9f9f9;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.integration-description {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* API Section */
.api-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #374151;
}

@media (min-width: 768px) {
  .api-section {
    padding: 3rem;
  }
}

.api-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .api-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.api-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 1.5rem;
}

.api-description {
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.125rem;
}

.api-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.api-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.api-feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #32d296;
  border-radius: 50%;
}

.api-feature-text {
  color: #d1d5db;
}

.api-btn {
  background-color: #32d296;
  color: #000;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.api-btn:hover {
  background-color: #28b882;
}

.api-code {
  background-color: #1a1a1a;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #374151;
}

.code-header {
  margin-bottom: 1rem;
}

.code-title {
  font-size: 0.875rem;
  color: #9ca3af;
}

.code-block {
  color: #32d296;
  font-size: 0.875rem;
  overflow-x: auto;
  font-family: "Courier New", monospace;
  line-height: 1.5;
}

/* Use Cases Section */
.use-cases-section {
  padding: 6rem 0;
  background-color: #0d0d0d;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .use-cases-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.use-case-card {
  background-color: #1a1a1a;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  border-color: rgba(50, 210, 150, 0.3);
  transform: translateY(-0.25rem);
}

.use-case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.use-case-icon {
  background: linear-gradient(135deg, #32d296 0%, #28b882 100%);
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.use-case-card:hover .use-case-icon {
  transform: scale(1.1);
}

.use-case-icon-green {
  background: linear-gradient(135deg, #32d296 0%, #28b882 100%);
  color: #fff;
}

.use-case-icon-red {
  background: linear-gradient(135deg, #f65e3b 0%, #e54e2e 100%);
  color: #fff;
}

.use-case-icon-purple {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  color: #fff;
}

.use-case-icon-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
}

.use-case-icon-indigo {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #fff;
}

.use-case-icon-pink {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  color: #fff;
}

.use-case-icon-yellow {
  background: linear-gradient(135deg, #eab308 0%, #f59e0b 100%);
  color: #fff;
}

.use-case-icon-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
}

.use-case-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.use-case-stat {
  text-align: right;
}

.stat-value {
  color: #32d296;
  font-weight: 700;
  font-size: 0.875rem;
}

.stat-label {
  color: #9ca3af;
  font-size: 0.75rem;
}

.use-case-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 0.75rem;
}

.use-case-description {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.use-case-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.use-case-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #32d296;
  border-radius: 50%;
}

.feature-text {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Success stories */
.success-stories {
  background-color: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #374151;
}

@media (min-width: 768px) {
  .success-stories {
    padding: 3rem;
  }
}

.success-header {
  text-align: center;
  margin-bottom: 3rem;
}

.success-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 1rem;
}

.success-description {
  color: #d1d5db;
  font-size: 1.125rem;
}

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

@media (min-width: 768px) {
  .success-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.success-stat {
  text-align: center;
}

.success-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #32d296;
  margin-bottom: 0.5rem;
}

.success-label {
  color: #f9f9f9;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.success-company {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Security Section */
.security-section {
  padding: 6rem 0;
  background-color: #1a1a1a;
}

.security-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .security-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .security-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.security-feature {
  background-color: #0d0d0d;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
}

.security-feature:hover {
  border-color: rgba(50, 210, 150, 0.3);
}

.security-icon {
  background-color: #32d296;
  padding: 0.75rem;
  border-radius: 0.5rem;
  width: fit-content;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

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

.security-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #000;
}

.security-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f9f9f9;
  margin-bottom: 0.75rem;
}

.security-description {
  color: #d1d5db;
  line-height: 1.6;
}

/* Certifications */
.certifications-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #374151;
}

@media (min-width: 768px) {
  .certifications-section {
    padding: 3rem;
  }
}

.certifications-header {
  text-align: center;
  margin-bottom: 3rem;
}

.certifications-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 1rem;
}

.certifications-description {
  color: #d1d5db;
  font-size: 1.125rem;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.certification-card {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #374151;
  text-align: center;
  transition: all 0.3s ease;
}

.certification-card:hover {
  border-color: rgba(50, 210, 150, 0.3);
}

.certification-icon {
  width: 4rem;
  height: 4rem;
  background-color: #32d296;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.certification-icon svg {
  width: 2rem;
  height: 2rem;
  color: #000;
}

.certification-name {
  color: #f9f9f9;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.certification-desc {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Additional security info */
.security-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .security-details {
    grid-template-columns: 1fr 1fr;
  }
}

.security-detail-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f9f9f9;
  margin-bottom: 1rem;
}

.security-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.security-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
}

.security-list-dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #32d296;
  border-radius: 50%;
}

/* Reports Section */
.reports-section {
  padding: 6rem 0;
  background-color: #0d0d0d;
}

.reports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .reports-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.reports-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .reports-content {
    text-align: left;
  }
}

.reports-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

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

.reports-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reports-feature-icon {
  background-color: #1a1a1a;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.reports-feature-icon-green {
  color: #32d296;
}

.reports-feature-icon-red {
  color: #f65e3b;
}

.reports-feature-icon-purple {
  color: #a855f7;
}

.reports-feature-icon-blue {
  color: #3b82f6;
}

.reports-feature-text {
  color: #d1d5db;
}

/* Reports mockup */
.reports-mockup {
  position: relative;
}

.reports-dashboard {
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #4b5563;
}

.reports-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.reports-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reports-icon {
  width: 2rem;
  height: 2rem;
  background-color: #32d296;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.reports-title {
  color: #f9f9f9;
  font-weight: 600;
}

.reports-subtitle {
  color: #9ca3af;
  font-size: 0.875rem;
}

.reports-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #32d296;
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.live-text {
  color: #32d296;
  font-size: 0.875rem;
}

.reports-metrics {
  position: relative;
  margin-bottom: 1.5rem;
}

.metrics-category {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.metrics-category.active {
  display: grid;
}

.metric-card {
  background-color: #0d0d0d;
  border-radius: 0.5rem;
  padding: 1rem;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.metric-label {
  color: #9ca3af;
  font-size: 0.875rem;
}

.metric-change {
  font-size: 0.75rem;
  font-weight: 500;
}

.metric-change.positive {
  color: #32d296;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f9f9f9;
}

/* Chart visualization */
.reports-chart {
  background-color: #0d0d0d;
  border-radius: 0.5rem;
  padding: 1rem;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.chart-label {
  color: #9ca3af;
  font-size: 0.875rem;
}

.chart-icon {
  width: 1rem;
  height: 1rem;
  color: #32d296;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 5rem;
  margin-bottom: 0.5rem;
}

.chart-bar {
  background-color: #32d296;
  border-radius: 0.125rem 0.125rem 0 0;
  flex: 1;
  transition: all 1s ease-out;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
}

.chart-day {
  color: #6b7280;
  font-size: 0.75rem;
}

/* Floating insights */
.floating-insight {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background-color: #32d296;
  padding: 0.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.insight-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.insight-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #000;
}

.insight-text {
  color: #000;
  font-size: 0.875rem;
  font-weight: 600;
}

.floating-recommendation {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background-color: #1a1a1a;
  border: 1px solid #4b5563;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
  max-width: 18rem;
}

.recommendation-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.recommendation-icon {
  width: 1rem;
  height: 1rem;
  color: #32d296;
}

.recommendation-title {
  color: #f9f9f9;
  font-size: 0.875rem;
  font-weight: 500;
}

.recommendation-text {
  color: #d1d5db;
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background-color: #1a1a1a;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.billing-label {
  font-weight: 500;
  color: #9ca3af;
}

.billing-label.active {
  color: #f9f9f9;
}

.billing-discount {
  background-color: #32d296;
  color: #000;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  margin-left: 0.5rem;
}

.toggle-switch {
  position: relative;
  width: 3.5rem;
  height: 1.75rem;
  background-color: #32d296;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.monthly {
  background-color: #4b5563;
}

.toggle-slider {
  position: absolute;
  top: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  transform: translateX(2rem);
}

.toggle-switch.monthly .toggle-slider {
  transform: translateX(0.125rem);
}

/* Pricing cards */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto 5rem;
}

@media (min-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  position: relative;
  background-color: #0d0d0d;
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid #374151;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-0.25rem);
}

.pricing-card.popular {
  border-color: #32d296;
  box-shadow: 0 10px 25px -5px rgba(50, 210, 150, 0.2);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #32d296;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

.plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 0.5rem;
}

.plan-subtitle {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #32d296;
}

.price-currency {
  color: #32d296;
  margin-left: 0.25rem;
}

.price-period {
  color: #9ca3af;
  margin-left: 0.5rem;
}

.price-savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.original-price {
  color: #6b7280;
  text-decoration: line-through;
  font-size: 0.875rem;
}

.savings-badge {
  background-color: rgba(50, 210, 150, 0.2);
  color: #32d296;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-name {
  color: #d1d5db;
  font-size: 0.875rem;
}

.feature-value {
  color: #f9f9f9;
  font-size: 0.875rem;
  font-weight: 500;
}

.feature-check {
  width: 1.25rem;
  height: 1.25rem;
  color: #32d296;
}

.feature-cross {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
}

.plan-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.plan-footer {
  text-align: center;
  color: #9ca3af;
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

.plan-price-text {
  color: #32d296;
}

/* Add-ons */
.addons-section {
  background-color: #0d0d0d;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #374151;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .addons-section {
    padding: 3rem;
  }
}

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

.addons-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 1rem;
}

.addons-description {
  color: #d1d5db;
}

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

@media (min-width: 768px) {
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .addons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: #1a1a1a;
  border-radius: 0.5rem;
  border: 1px solid #374151;
}

.addon-name {
  color: #d1d5db;
}

.addon-price {
  color: #32d296;
  font-weight: 600;
}

/* FAQ pricing */
.pricing-faq {
  text-align: center;
}

.faq-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 1.5rem;
}

.faq-description {
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-btn {
  background-color: #32d296;
  color: #000;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background-color: #0d0d0d;
}

.main-testimonial {
  max-width: 64rem;
  margin: 0 auto 4rem;
}

.testimonial-container {
  background-color: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #374151;
  position: relative;
}

@media (min-width: 768px) {
  .testimonial-container {
    padding: 3rem;
  }
}

.quote-icon {
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  background-color: #32d296;
  padding: 0.75rem;
  border-radius: 50%;
}

.quote-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #000;
}

.testimonial-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .testimonial-content {
    grid-template-columns: 2fr 1fr;
  }
}

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

.testimonial-quote {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.author-name {
  color: #f9f9f9;
  font-weight: 600;
}

.author-role {
  color: #32d296;
  font-size: 0.875rem;
}

.author-company {
  color: #9ca3af;
  font-size: 0.875rem;
}

.testimonial-metrics {
  text-align: center;
}

.metric-card {
  background-color: #0d0d0d;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #374151;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #32d296;
  margin-bottom: 0.5rem;
}

.metric-label {
  color: #d1d5db;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.metric-industry {
  background-color: rgba(50, 210, 150, 0.1);
  color: #32d296;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* Navigation */
.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.nav-btn {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: #0d0d0d;
  border: 1px solid #374151;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  border-color: #32d296;
  color: #32d296;
}

.nav-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #4b5563;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #32d296;
}

/* Stats grid */
.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonial-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonial-stat {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 800;
  color: #32d296;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #9ca3af;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background-color: #1a1a1a;
}

.faq-content {
  max-width: 64rem;
  margin: 0 auto;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.faq-items {
  position: relative;
}

.faq-category {
  display: none;
}

.faq-category.active {
  display: block;
}

.faq-item {
  background-color: #0d0d0d;
  border-radius: 0.75rem;
  border: 1px solid #374151;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(50, 210, 150, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.question-text {
  color: #f9f9f9;
  font-size: 1.125rem;
  font-weight: 600;
  padding-right: 1rem;
}

.question-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .question-icon {
  transform: rotate(180deg);
  color: #32d296;
}

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

.faq-item.open .faq-answer {
  max-height: 200px;
}

.answer-text {
  padding: 0 1.5rem 1.5rem;
  color: #d1d5db;
  line-height: 1.6;
}

/* Contact support */
.faq-support {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: #0d0d0d;
  border-radius: 0.75rem;
  border: 1px solid #374151;
}

.support-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f9f9f9;
  margin-bottom: 1rem;
}

.support-description {
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.support-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .support-buttons {
    flex-direction: row;
  }
}

.support-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

/* Resources Section */
.resources-section {
  padding: 6rem 0;
  background-color: #0d0d0d;
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.resource-category {
  background-color: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #374151;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.category-icon {
  background-color: #0d0d0d;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.category-icon-green {
  color: #32d296;
}

.category-icon-red {
  color: #f65e3b;
}

.category-icon-purple {
  color: #a855f7;
}

.category-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #f9f9f9;
}

.resource-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-item {
  padding: 1rem;
  background-color: #0d0d0d;
  border-radius: 0.5rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
  cursor: pointer;
}

.resource-item:hover {
  border-color: rgba(50, 210, 150, 0.3);
}

.resource-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.resource-title {
  color: #f9f9f9;
  font-weight: 600;
  transition: color 0.3s ease;
}

.resource-item:hover .resource-title {
  color: #32d296;
}

.resource-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.resource-type {
  font-size: 0.75rem;
  background-color: rgba(50, 210, 150, 0.2);
  color: #32d296;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.resource-link {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
  transition: color 0.3s ease;
}

.resource-item:hover .resource-link {
  color: #32d296;
}

.resource-description {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Templates section */
.templates-section {
  margin-bottom: 5rem;
}

.templates-header {
  text-align: center;
  margin-bottom: 3rem;
}

.templates-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 1rem;
}

.templates-description {
  color: #d1d5db;
  font-size: 1.125rem;
}

.templates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .templates-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.template-card {
  background-color: #1a1a1a;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #374151;
  transition: all 0.3s ease;
}

.template-card:hover {
  border-color: rgba(50, 210, 150, 0.3);
}

.template-image {
  position: relative;
}

.template-img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.template-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1a1a1a, transparent);
}

.template-content {
  padding: 1.5rem;
}

.template-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.template-card:hover .template-name {
  color: #32d296;
}

.template-description {
  color: #d1d5db;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.template-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.template-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.template-feature-dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #32d296;
  border-radius: 50%;
}

.template-feature-text {
  color: #9ca3af;
  font-size: 0.875rem;
}

.template-btn {
  width: 100%;
  background-color: #0d0d0d;
  border: 1px solid #32d296;
  color: #32d296;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.template-btn:hover {
  background-color: #32d296;
  color: #000;
}

.template-btn svg {
  width: 1rem;
  height: 1rem;
}

/* Learning center CTA */
.learning-center {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #374151;
  text-align: center;
}

@media (min-width: 768px) {
  .learning-center {
    padding: 3rem;
  }
}

.learning-content {
  max-width: 48rem;
  margin: 0 auto;
}

.learning-icon {
  background-color: #32d296;
  padding: 1rem;
  border-radius: 50%;
  width: fit-content;
  margin: 0 auto 1.5rem;
}

.learning-icon svg {
  width: 2rem;
  height: 2rem;
  color: #000;
}

.learning-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 1rem;
}

.learning-description {
  color: #d1d5db;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

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

.learning-stat {
  text-align: center;
}

.learning-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #32d296;
  margin-bottom: 0.5rem;
}

.learning-stat-label {
  color: #9ca3af;
  font-size: 0.875rem;
}

.learning-btn {
  background-color: #32d296;
  color: #000;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.learning-btn:hover {
  background-color: #28b882;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.cta-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cta-decoration-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background-color: #32d296;
  opacity: 0.2;
}

.cta-decoration-2 {
  bottom: 2.5rem;
  right: 2.5rem;
  width: 10rem;
  height: 10rem;
  background-color: #f65e3b;
  opacity: 0.2;
  animation-delay: 1s;
}

.cta-decoration-3 {
  top: 50%;
  left: 25%;
  width: 6rem;
  height: 6rem;
  background-color: #a855f7;
  opacity: 0.1;
  animation: bounce 3s ease-in-out infinite;
}

.cta-container {
  position: relative;
  z-index: 10;
}

.cta-content {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.main-cta {
  background-color: #1a1a1a;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #374151;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .main-cta {
    padding: 4rem;
  }
}

.cta-icon {
  background-color: #32d296;
  padding: 1rem;
  border-radius: 50%;
  width: fit-content;
  margin: 0 auto 2rem;
}

.cta-icon svg {
  width: 3rem;
  height: 3rem;
  color: #000;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3.75rem;
  }
}

.cta-description {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 1.5rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-btn-primary {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.cta-btn-primary:hover {
  transform: scale(1.05);
}

.cta-btn-outline {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.cta-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cta-trust {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #32d296;
}

.trust-text {
  color: #d1d5db;
}

.cta-footer {
  color: #9ca3af;
  font-size: 0.875rem;
}

.secondary-ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .secondary-ctas {
    grid-template-columns: 1fr 1fr;
  }
}

.secondary-cta {
  background-color: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #374151;
  text-align: left;
}

.secondary-cta-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.secondary-cta-icon {
  width: 2rem;
  height: 2rem;
  color: #32d296;
}

.secondary-cta-icon-red {
  color: #f65e3b;
}

.secondary-cta-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f9f9f9;
}

.secondary-cta-description {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.secondary-cta-btn {
  background-color: transparent;
  border: 1px solid #32d296;
  color: #32d296;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.secondary-cta-btn:hover {
  background-color: #32d296;
  color: #000;
}

.secondary-cta-btn-red {
  border-color: #f65e3b;
  color: #f65e3b;
}

.secondary-cta-btn-red:hover {
  background-color: #f65e3b;
  color: #fff;
}

/* Footer */
.footer {
  background-color: #0d0d0d;
  border-top: 1px solid #374151;
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr repeat(4, auto);
  }
}

.footer-company {
  max-width: 20rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 2.5rem;
  height: 2.5rem;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f9f9f9;
}

.footer-description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  width: 1rem;
  height: 1rem;
  color: #32d296;
}

.contact-text {
  color: #9ca3af;
  font-size: 0.875rem;
}

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

.social-link {
  color: #9ca3af;
  transition: all 0.3s ease;
  padding: 0.5rem;
  background-color: #1a1a1a;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: #32d296;
  background-color: #2a2a2a;
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-section-title {
  color: #f9f9f9;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #32d296;
}

.footer-newsletter {
  padding: 2rem 0;
  border-top: 1px solid #374151;
}

.newsletter-container {
  background-color: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #374151;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .newsletter-content {
    grid-template-columns: 1fr 1fr;
  }
}

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 0.5rem;
}

.newsletter-description {
  color: #9ca3af;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background-color: #0d0d0d;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  color: #f9f9f9;
  font-size: 1rem;
}

.newsletter-input::placeholder {
  color: #6b7280;
}

.newsletter-input:focus {
  outline: none;
  border-color: #32d296;
}

.newsletter-btn {
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid #374151;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.legal-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #32d296;
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #374151;
}

.certification {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.75rem;
}

.certification-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #32d296;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certification-text {
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
}

.certification-label {
  color: #9ca3af;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 640px) {
  .section-title {
    font-size: 2rem;
  }

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

  .hero-title {
    font-size: 2rem;
  }

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

  .cta-title {
    font-size: 2rem;
  }

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles */
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid #32d296;
  outline-offset: 2px;
}

/* Selection styles */
::selection {
  background-color: #32d296;
  color: #000;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #32d296;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #28b882;
}
