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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  overflow-x: hidden;
}

/* Portal Access Bar Styles */
.portal-access-bar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.portal-brand {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

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

.portal-link {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.portal-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.portal-link.primary {
  background: linear-gradient(45deg, #ff6b6b, #ffd93d);
  color: #333;
  border: none;
}

.portal-link.primary:hover {
  background: linear-gradient(45deg, #ff5252, #ffcc02);
  color: #333;
}

.user-welcome {
  color: white;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Trial Banner Styles */
.trial-banner {
  background: linear-gradient(45deg, #ff6b6b, #ffd93d);
  color: #333;
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-weight: 600;
}

.trial-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

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

.quick-access-button {
  background: white;
  color: #ff6b6b;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.quick-access-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: #ff6b6b;
}

/* Enhanced Pricing Card Styles */
.pricing-card.updated-enterprise {
  border: 3px solid #ff6b6b;
  position: relative;
  overflow: hidden;
}

.pricing-card.updated-enterprise::before {
  content: 'PRICE UPDATED!';
  position: absolute;
  top: -10px;
  right: -30px;
  background: #ff6b6b;
  color: white;
  padding: 5px 40px;
  font-size: 0.8rem;
  transform: rotate(45deg);
  font-weight: bold;
}

.trial-notice {
  background: #e8f5e8;
  border: 2px solid #4caf50;
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
  text-align: center;
  color: #2e7d32;
}

.paypal-button-container {
  margin-top: 1rem;
  min-height: 50px;
}

/* Enhanced Education Section Styles */
.education-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.education-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-left: 5px solid #667eea;
  transition: all 0.3s ease;
}

.education-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.education-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #667eea;
}

.education-card h3 {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 700;
}

.education-card p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.education-highlight {
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #e53e3e;
  margin: 1rem 0;
  font-style: italic;
  color: #c53030;
}

/* Training Features Section */
.training-features {
  background: #f0fff4;
  padding: 5rem 0;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  margin: 3rem 0;
}

.feature-showcase:nth-child(even) {
  grid-template-columns: 2fr 1fr;
}

.feature-showcase:nth-child(even) .feature-content {
  order: 2;
}

.feature-showcase:nth-child(even) .feature-visual {
  order: 1;
}

.feature-visual {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  color: white;
}

.feature-content h3 {
  font-size: 2rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 10px;
  border-left: 4px solid #667eea;
}

.step-number {
  background: #667eea;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* Competitor Analysis Section */
.competitor-analysis-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  color: white;
}

.analysis-demo {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.before-card, .after-card {
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.before-card {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
}

.after-card {
  background: rgba(34, 197, 94, 0.2);
  border-color: #22c55e;
}

/* Content Quality Section */
.content-quality-section {
  padding: 5rem 0;
  background: white;
}

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

.metric-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 15px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.metric-card:hover {
  border-color: #667eea;
  transform: translateY(-3px);
}

.metric-number {
  font-size: 3rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.metric-description {
  font-size: 0.9rem;
  color: #718096;
}

/* Original Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  color: white;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text .subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 300;
}

.hero-text .description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-primary {
  background: linear-gradient(45deg, #ffd93d, #ff6b6b);
  color: #333;
  box-shadow: 0 10px 30px rgba(255, 217, 61, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 217, 61, 0.4);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
}

.demo-video {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: white;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffd93d, #ff6b6b);
  border: none;
  cursor: pointer;
  font-size: 2rem;
  color: #333;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 217, 61, 0.3);
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(255, 217, 61, 0.4);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #2d3748;
}

.problem-section {
  padding: 5rem 0;
  background: #f8fafc;
}

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

.problem-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.problem-card p {
  color: #718096;
  line-height: 1.6;
}

.stats-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

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

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #ffd93d;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.solution-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

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

.solution-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.solution-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefits-list li::before {
  content: '✅';
  font-size: 1.2rem;
}

.demo-preview {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.demo-preview h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.demo-prompt {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 10px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  border-left: 4px solid #ffd93d;
}

.features-section {
  padding: 5rem 0;
  background: white;
}

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

.feature-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: #667eea;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.feature-card p {
  color: #718096;
  line-height: 1.6;
}

.social-proof {
  padding: 5rem 0;
  background: #f8fafc;
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #4a5568;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.author-info h4 {
  margin-bottom: 0.25rem;
  color: #2d3748;
}

.author-info p {
  color: #718096;
  font-size: 0.9rem;
}

.comparison-section {
  padding: 5rem 0;
  background: white;
}

.comparison-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-top: 3rem;
}

.comparison-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-cell {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.comparison-cell:nth-child(1) {
  background: #f8fafc;
  font-weight: 600;
  color: #2d3748;
}

.comparison-cell:nth-child(2) {
  background: #fff5f5;
  color: #e53e3e;
}

.comparison-cell:nth-child(3) {
  background: #f0fff4;
  color: #38a169;
}

.pricing-section {
  padding: 5rem 0;
  background: white;
}

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

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
  border-color: #ffd93d;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 217, 61, 0.2);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #ffd93d, #ff6b6b);
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.pricing-card .price span {
  font-size: 1rem;
  color: #718096;
}

.pricing-card .price-description {
  color: #718096;
  margin-bottom: 2rem;
}

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

.pricing-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: '✅';
  font-size: 1rem;
}

.guarantee-section {
  padding: 3rem 0;
  background: #f8fafc;
  text-align: center;
}

.guarantee-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
  border: 3px solid #48bb78;
}

.guarantee-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #48bb78;
}

.guarantee-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.guarantee-card p {
  color: #718096;
  font-size: 1.1rem;
  line-height: 1.6;
}

.faq-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-answer {
  color: #718096;
  line-height: 1.6;
}

.urgency-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  color: white;
  text-align: center;
}

.urgency-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.urgency-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.urgency-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.countdown-timer {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.timer-display {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.timer-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.final-cta {
  background: rgba(255, 255, 255, 0.2);
  color: #333;
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.final-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.footer {
  background: #2d3748;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: white;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: #718096;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.close:hover {
  opacity: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2d3748;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.pricing-summary {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
  text-align: center;
}

.pricing-summary h3 {
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.total-price {
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .portal-access-content {
    padding: 0 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .portal-nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  
  .portal-link {
    text-align: center;
  }
  
  .user-welcome {
    text-align: center;
  }

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

  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .feature-showcase:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-showcase:nth-child(even) .feature-content {
    order: 1;
  }

  .feature-showcase:nth-child(even) .feature-visual {
    order: 2;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .quality-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .solution-content {
    grid-template-columns: 1fr;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .comparison-row {
    grid-template-columns: 1fr;
  }
  
  .comparison-cell {
    border-bottom: 1px solid #e2e8f0;
  }
}