/* Landing Page Styles */

/* Legal Pages Styles */
.legal-content {
  padding: 4rem 0;
  background: #f8f9fa;
}

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

.legal-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.legal-subtitle {
  color: #666;
  font-size: 1.1rem;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.legal-text h2 {
  color: #3b82f6;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-text ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.landing-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', sans-serif;
  line-height: 1.6;
  color: #1f2937;
  margin: 0;
  padding: 0;
  background: #ffffff;
}

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

/* Enterprise Header */
.landing-header {
  background: #ffffff;
  color: #1f2937;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border-bottom: 1px solid #e5e7eb;
}

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

.logo h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

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

.nav a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #1f2937;
}

.nav-toggle {
  display: none;
}

.btn-login {
  background: #3b82f6;
  color: white;
  border: 1px solid #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-login:hover {
  background: #2563eb;
  border-color: #2563eb;
}

/* Professional Hero Section */
.hero {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

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

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Professional Buttons */
.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #3b82f6;
  color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* Problem Section */
.problem-section {
  padding: 4rem 0;
  background: #fef2f2;
  border-top: 1px solid #fee2e2;
  border-bottom: 1px solid #fee2e2;
}

.problem-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #991b1b;
}

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

.problem-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(153, 27, 27, 0.1);
  text-align: center;
  border: 2px solid #fee2e2;
  transition: all 0.3s ease;
}

.problem-card.urgent {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 2px 8px rgba(153, 27, 27, 0.1);
  }
  50% {
    box-shadow: 0 4px 16px rgba(153, 27, 27, 0.2);
  }
  100% {
    box-shadow: 0 2px 8px rgba(153, 27, 27, 0.1);
  }
}

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

.problem-card h3 {
  font-size: 1.5rem;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

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

.problem-summary {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.problem-summary .emphasis {
  font-size: 1.25rem;
  color: #7c2d12;
  font-weight: 500;
  line-height: 1.8;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: #f8f9fa;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  text-align: left;
  transition: box-shadow 0.2s ease;
  border: 1px solid #e5e7eb;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #3b82f6;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1f2937;
  font-weight: 600;
}

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

/* Process Section */
.process-section {
  padding: 6rem 0;
  background: white;
}

.process-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.process-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.comparison-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.comparison-item.highlight {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
}

.comparison-item h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.comparison-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-item li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.comparison-item.highlight li {
  border-bottom-color: rgba(255,255,255,0.2);
}

.vs-divider {
  background: #3b82f6;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  font-weight: 700;
  text-align: center;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
}

.benefits-highlight {
  text-align: center;
  background: #f0f9ff;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #3b82f6;
}

.benefits-highlight h3 {
  color: #3b82f6;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* ROI Section */
.roi-section {
  margin-top: 2rem;
  padding: 2.5rem;
  background: #f0fdf4;
  border-radius: 12px;
  border: 2px solid #22c55e;
  text-align: center;
}

.roi-section h3 {
  color: #16a34a;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

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

.roi-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.roi-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #16a34a;
}

.roi-label {
  font-size: 0.9rem;
  color: #14532d;
  line-height: 1.4;
}

.roi-note {
  font-size: 0.85rem;
  color: #166534;
  font-style: italic;
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  background: #f8f9fa;
}

.price-per-unit {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 1.5rem 0;
  gap: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
}

.price-period {
  font-size: 1.1rem;
  color: #6b7280;
}

.price-annual {
  text-align: center;
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.pricing-minimum {
  text-align: center;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.pricing-minimum p {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: white;
  padding: 0.25rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-card.featured {
  position: relative;
  border: 2px solid #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.roi-summary {
  margin-top: 6rem;
  text-align: center;
  clear: both;
  position: relative;
  z-index: 10;
}

.roi-note {
  color: #059669;
  font-weight: 600;
  margin-top: 1rem;
}

.pricing-footer {
  margin: 1rem 0 2rem 0;
  text-align: center;
  color: #6b7280;
  font-size: 0.95rem;
}

.pricing-footer p {
  margin: 0.5rem 0;
}

.btn-pricing.primary {
  background: #3b82f6;
  border: 2px solid #3b82f6;
}

.btn-pricing.primary:hover {
  background: #2563eb;
  border-color: #2563eb;
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  align-items: start;
}

.pricing-grid-row2 {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.enterprise-centered {
  max-width: 350px;
}

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}



.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: white;
  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: #333;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.price-period {
  color: #666;
  margin-bottom: 2rem;
}

.price-tiers {
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #e9ecef;
}

.tier {
  padding: 0.75rem 0;
  color: #495057;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid #dee2e6;
}

.tier:last-child {
  border-bottom: none;
}

.tier strong {
  color: #3b82f6;
  font-weight: 700;
}

.tier-spacer {
  border-bottom: none !important;
  padding: 0.75rem 0 !important;
  visibility: hidden;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing-card li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  color: #666;
}

.feature-unavailable {
  color: #ccc !important;
  text-decoration: line-through;
  opacity: 0.5;
}

.feature-premium {
  color: #3b82f6 !important;
  font-weight: 600;
}

.unit-count {
  color: #333 !important;
  font-weight: 600;
}

/* SMS Add-on Styling */
.sms-addon {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  text-align: center;
}

.sms-addon h4 {
  color: #0369a1;
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.addon-pricing {
  margin-bottom: 0.75rem;
}

.addon-tier {
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.25rem;
}

.addon-tier strong {
  color: #0369a1;
  font-weight: 700;
}

.addon-benefit {
  font-size: 0.8rem;
  color: #0369a1;
  font-style: italic;
  margin: 0;
  font-weight: 500;
}

.btn-pricing {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
  margin-top: auto;
}

.btn-pricing:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: white;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

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

.testimonial-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
  margin: 0 0 1.5rem 0;
}

.testimonial-author strong {
  display: block;
  color: #333;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

/* CTA Section Styles */
.cta-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 3rem;
}

.early-adopter-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.benefit-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.benefit-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.benefit-card ul {
  list-style: none;
  padding: 0;
}

.benefit-card li {
  color: #666;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.benefit-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.cta-action {
  text-align: center;
}

.cta-message {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Professional Contact Section */
.contact {
  padding: 6rem 0;
  background: #f9fafb;
  color: #1f2937;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: #6b7280;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-item {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-item a {
  color: #3b82f6;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
.footer {
  background: #2d3748;
  color: white;
  padding: 3rem 0 1rem 0;
}

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

.footer-brand h3 {
  margin-bottom: 1rem;
  color: #3b82f6;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: #3b82f6;
}

.footer-column a {
  display: block;
  color: #a0aec0;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 1rem;
  text-align: center;
  color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .roi-comparison {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .vs-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .landing-header {
    padding: 0.75rem 0;
  }
  
  .problem-section h2 {
    font-size: 2rem;
  }
  
  .problem-stats {
    gap: 1.5rem;
  }
  
  .problem-card {
    padding: 1.5rem;
  }
  
  .problem-icon {
    font-size: 2.5rem;
  }
  
  .roi-metrics {
    gap: 1.5rem;
  }
  
  .roi-value {
    font-size: 2rem;
  }
  
  .landing-header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo h1 {
    font-size: 1.25rem;
  }
  
  .nav {
    display: none;
  }
  
  .nav.nav-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    gap: 1rem;
  }
  
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary,
  .hero-cta a.btn-secondary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
    box-sizing: border-box;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

/* Demo Loading Modal */
.demo-loading-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
  padding: 1rem;
  box-sizing: border-box;
}

.demo-loading-content {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

.demo-loading-header {
  margin-bottom: 2rem;
}

.rezanto-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.demo-loading-header h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 0;
  font-weight: 600;
}

.demo-loading-body {
  margin-bottom: 2rem;
}

.loading-animation {
  margin-bottom: 1.5rem;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

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

.loading-status {
  margin-bottom: 1.5rem;
}

.status-text {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.status-subtext {
  font-size: 0.9rem;
  color: #666;
}

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

.feature-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.9rem;
  color: #555;
  padding: 0.5rem 0;
}

.feature-icon {
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.demo-loading-footer {
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #1f2937);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 4px;
}

.progress-text {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .landing-header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
  }
  
  body {
    padding-top: 60px;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 1rem;
    font-size: 1rem;
    min-height: 48px;
  }
  
  .hero-cta a.btn-secondary {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  .demo-loading-content {
    padding: 1.5rem;
    width: calc(100% - 2rem);
    max-width: calc(100vw - 2rem);
    max-height: 85vh;
    margin: 0;
  }
  
  .demo-loading-header h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .rezanto-logo {
    font-size: 1.25rem;
  }
  
  .loading-animation {
    margin-bottom: 1rem;
  }
  
  .loading-spinner {
    width: 40px;
    height: 40px;
  }
  
  .status-text {
    font-size: 1rem;
  }
  
  .status-subtext {
    font-size: 0.85rem;
  }
  
  .progress-bar {
    height: 6px;
  }
  
  .progress-text {
    font-size: 0.85rem;
  }
  
  .loading-features {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
  }
  
  .loading-features .feature-item {
    padding: 0.25rem 0;
  }
  
  .demo-loading-footer {
    padding-top: 1rem;
  }
  
  .process-comparison {
    grid-template-columns: 1fr;
  }
  
  .vs-divider {
    transform: rotate(90deg);
    margin: 1rem auto;
  }
  
  .comparison-item {
    padding: 1.5rem 1rem;
  }
  
  .comparison-item h3 {
    font-size: 1.25rem;
  }
  
  .comparison-item li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }
}

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

.about-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 3rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.founder-profile {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: start;
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
}

.founder-image {
  text-align: center;
}

.founder-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.founder-info h3 {
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.founder-title {
  color: #3b82f6;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.founder-bio p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.founder-quote {
  font-style: italic;
  border-left: 4px solid #3b82f6;
  padding-left: 1.5rem;
  margin-top: 2rem;
  color: #374151;
}

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

.why-trust h3 {
  font-size: 1.8rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

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

.trust-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.2s;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.trust-item h4 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.trust-item p {
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive adjustments for About section */
@media (max-width: 768px) {
  .founder-profile {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }
  
  .founder-image img {
    width: 150px;
    height: 150px;
  }
  
  .founder-info h3 {
    margin-top: 1rem;
  }
  
  .founder-quote {
    margin-left: 0;
    padding-left: 1rem;
  }
  
  .trust-points {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}