/* 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;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* CSS Variables for consistent theming */
:root {
  --primary-white: #ffffff;
  --primary-black: #000000;
  --secondary-gray: #d6d6d6;
  --accent-gray: #888888;
  --dark-bg: #0c0c0c;
  --darker-bg: #040404;
  --accent-yellow: #ffe066;
  --accent-cyan: #00eaff;
  --text-primary: #ffffff;
  --text-secondary: #d6d6d6;
  --text-muted: #888888;
  --border-color: #333333;
  --shadow-light: rgba(255, 255, 255, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.3);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #d6d6d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-align: center;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.advantage-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

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

.author-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}

.author-title {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Layout */
.main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  height: 60px;
  width: auto;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

.cta-nav {
  background: var(--accent-yellow);
  color: var(--primary-black) !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-nav:hover {
  background: #ffd700;
  transform: translateY(-1px);
}

.cta-nav::after {
  display: none;
}

/* Main Content */
.main-content {
  flex: 1;
  padding-top: 80px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #0c0c0c 50%, #000000 100%);
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  max-width: 1000px;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-yellow));
  color: var(--primary-black);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-credential {
  display: block;
  color: #ffe066 !important;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-yellow);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-weight: 500;
}

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

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.cta-button.primary {
  background: var(--accent-yellow);
  color: var(--primary-black);
}

.cta-button.primary:hover {
  background: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 224, 102, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.cta-button.secondary:hover {
  background: var(--text-primary);
  color: var(--primary-black);
  transform: translateY(-2px);
}

.powered-by {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.powered-by sup {
  font-size: 0.7rem;
  vertical-align: super;
}

/* Content Sections */
.content-section,
.features-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--accent-yellow);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 8px 8px 0;
}

.testimonial p {
  font-style: italic;
  color: var(--accent-yellow);
  font-weight: 600;
  margin: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-yellow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.footer-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.footer-button {
  background: var(--accent-yellow);
  color: var(--primary-black);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-button:hover {
  background: #ffd700;
  transform: translateY(-1px);
}

.footer-copyright {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-copyright p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    padding: 1rem;
    flex-wrap: wrap;
  }
  
  .header-nav {
    gap: 0.75rem;
  }
  
  .nav-link {
    font-size: 0.85rem;
    padding: 0.25rem 0;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
  
  .content-section,
  .features-section {
    padding: 3rem 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-brand {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 0.75rem;
  }
  
  .header-nav {
    gap: 0.5rem;
  }
  
  .nav-link {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
  
  .site-logo {
    max-width: 100px;
    height: 40px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
  .feature-card,
  .cta-button,
  .nav-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* Focus states for accessibility */
.cta-button:focus,
.nav-link:focus,
.footer-button:focus {
  outline: 2px solid var(--accent-yellow);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-secondary: #ffffff;
    --border-color: #ffffff;
  }
}

/* Why Us Section */
.why-us-section {
  background: var(--dark-bg);
}

.competitive-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.advantage-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.advantage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-yellow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.advantage-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

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

.advantage-item-centered {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--primary-black);
  padding: 5rem 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-yellow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-info {
  flex: 1;
}

/* Partners Section */
.partners-section {
  background: var(--dark-bg);
  padding: 4rem 2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-2px);
}

.partner-placeholder {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

/* Case Studies Section */
.case-studies-section {
  background: var(--primary-black);
  padding: 5rem 2rem;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

.case-study-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-yellow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.case-study-card:hover::before {
  opacity: 1;
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.case-study-results {
  background: var(--accent-yellow);
  color: var(--primary-black);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.case-study-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.case-study-metrics {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-yellow);
  line-height: 1;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .competitive-advantages {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
  
  .case-study-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .case-study-metrics {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-item,
  .testimonial-card,
  .case-study-card {
    padding: 1.5rem;
  }
}

/* Page Hero Styles */
.page-hero {
  background: linear-gradient(135deg, #000000 0%, #0c0c0c 50%, #000000 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 234, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 224, 102, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.page-hero .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 600px;
  margin: 0 auto;
}

/* Navigation Active State */
.nav-link.active {
  color: var(--accent-yellow);
  position: relative;
}

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

/* Detailed Case Studies */
.case-studies-detailed {
  padding: 5rem 2rem;
  background: var(--primary-black);
}

.case-study-detailed {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.case-study-detailed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-cyan));
}

.case-study-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.industry-tag,
.duration-tag {
  background: var(--accent-yellow);
  color: var(--primary-black);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.duration-tag {
  background: var(--accent-cyan);
}

.case-study-content {
  margin-top: 2rem;
}

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

.challenge h3,
.solution h3 {
  color: var(--accent-yellow);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.result-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.result-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-yellow);
  display: block;
  line-height: 1;
}

.result-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.testimonial-quote {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255, 224, 102, 0.05);
  border-left: 4px solid var(--accent-yellow);
  border-radius: 0 8px 8px 0;
}

.testimonial-quote blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.testimonial-quote cite {
  color: var(--accent-yellow);
  font-weight: 600;
  font-style: normal;
}

/* Pricing Styles */
.pricing-section {
  padding: 5rem 2rem;
  background: var(--dark-bg);
}

.pricing-section .pricing-grid {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-yellow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: var(--accent-yellow);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-yellow);
  color: var(--primary-black);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.plan-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.currency {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-yellow);
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: var(--text-secondary);
}

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

.features-list li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list li:last-child {
  border-bottom: none;
}

.pricing-button {
  display: block;
  width: 100%;
  background: var(--accent-yellow);
  color: var(--primary-black);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  background: #ffd700;
  transform: translateY(-2px);
}

.pricing-notes {
  margin-top: 3rem;
  text-align: center;
}

.note-text {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Features Comparison */
.features-comparison {
  padding: 5rem 2rem;
  background: var(--primary-black);
}

.comparison-table {
  margin-top: 3rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--dark-bg);
  font-weight: 600;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
  border-bottom: none;
}

.feature-column,
.plan-column,
.feature-name,
.plan-value {
  padding: 1rem;
  border-right: 1px solid var(--border-color);
}

.plan-column:last-child,
.plan-value:last-child {
  border-right: none;
}

.feature-column,
.feature-name {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
}

.plan-column,
.plan-value {
  text-align: center;
  color: var(--text-secondary);
}

/* FAQ Styles */
.faqs-section {
  padding: 5rem 2rem;
  background: var(--dark-bg);
}

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

.faq-category {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent-yellow);
  text-align: center;
}

.faq-item {
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.faq-item:hover {
  border-color: var(--accent-yellow);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-item.active {
  border-color: var(--accent-yellow);
  box-shadow: 0 8px 30px rgba(255, 224, 102, 0.1);
}

.faq-question {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
  line-height: 1.4;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-yellow);
}

.faq-question.active {
  background: rgba(255, 224, 102, 0.1);
  color: var(--accent-yellow);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--accent-yellow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 300;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 224, 102, 0.1);
}

.faq-question:hover::after {
  background: rgba(255, 224, 102, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.faq-question.active::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--accent-yellow);
  color: var(--primary-black);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-answer.active {
  padding: 1.5rem;
  max-height: 1000px;
  opacity: 1;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: var(--primary-black);
  text-align: center;
}

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

/* FAQ Preview */
.faq-preview {
  padding: 4rem 2rem;
  background: var(--primary-black);
}

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

.faq-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .page-hero {
    padding: 6rem 1rem 3rem;
  }
  
  .challenge-solution {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .plan-column,
  .plan-value {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
  
  .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }
  
  .faq-question::after {
    right: 1.25rem;
    font-size: 1.5rem;
    width: 25px;
    height: 25px;
  }
  
  .faq-answer.active {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .case-study-detailed,
  .pricing-card {
    padding: 1.5rem;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-price {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .amount {
    font-size: 2.5rem;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .faq-question::after {
    right: 1rem;
    font-size: 1.3rem;
    width: 22px;
    height: 22px;
  }
  
  .faq-answer.active {
    padding: 1rem;
  }
  
  .category-title {
    font-size: 1.5rem;
  }
}

/* Logo Carousel Animation */
.logo-carousel {
  overflow: hidden;
  background: var(--dark-bg);
  padding: 3rem 0;
  position: relative;
}

.logo-carousel::before,
.logo-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-bg), transparent);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-bg), transparent);
}

.logo-track {
  display: flex;
  animation: scroll 30s linear infinite;
  gap: 4rem;
  align-items: center;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  max-height: 60px;
  max-width: 200px;
  width: auto;
  height: auto;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%) brightness(1);
}

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

/* Reverse animation for second track */
.logo-track-reverse {
  animation: scroll-reverse 30s linear infinite;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-carousel {
    padding: 2rem 0;
  }
  
  .logo-track {
    gap: 2rem;
  }
  
  .logo-item {
    height: 60px;
  }
  
  .logo-item img {
    max-height: 40px;
    max-width: 150px;
  }
}

/* Signup Form Styles */
.signup-section {
  padding: 5rem 2rem;
  background: var(--primary-black);
}

.signup-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.signup-form-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.form-subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-yellow);
  box-shadow: 0 0 0 3px rgba(255, 224, 102, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-black);
  font-weight: bold;
  font-size: 12px;
}

.terms-link {
  color: var(--accent-yellow);
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #ffd700;
}

.signup-button {
  background: var(--accent-yellow);
  color: var(--primary-black);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.signup-button:hover {
  background: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 224, 102, 0.3);
}

.signup-benefits {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
}

.benefits-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-content h4 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.success-message {
  padding: 5rem 2rem;
  background: var(--primary-black);
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-yellow);
  color: var(--primary-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 2rem;
}

.success-content h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.success-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Responsive Design for Signup */
@media (max-width: 768px) {
  .signup-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .signup-form-container,
  .signup-benefits {
    padding: 2rem;
  }
  
  .form-title {
    font-size: 1.5rem;
  }
  
  .success-content h2 {
    font-size: 2rem;
  }
  
  .success-content p {
    font-size: 1rem;
  }
}

/* Print styles */
@media print {
  .site-header,
  .site-footer {
    display: none;
  }
  
  .main-content {
    padding-top: 0;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
}