/* Modern About Page Styling */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
  color: white;
  padding: 4rem 1rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.trust-indicator {
  margin-bottom: 2rem;
}

.trust-text {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline .highlight {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.btn-primary-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #1e40af;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: rgba(255, 255, 255, 0.5);
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating-stars {
  color: #fbbf24;
  font-size: 1.1rem;
}

.rating-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.upload-demo {
  max-width: 500px;
  margin: 0 auto;
}

.upload-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  text-align: center;
  color: #2c3e50;
}

.upload-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.upload-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.upload-card p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.upload-area {
  text-align: center;
  padding: 2rem 1rem;
  border: 2px dashed rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  background: #f8f9fa;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  cursor: default;
  opacity: 0.8;
}

.upload-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #6c757d;
}

.upload-text {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.upload-limit {
  font-size: 0.9rem;
  color: #6c757d;
}

.analyze-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.analyze-btn i {
  font-size: 1rem;
}

.analyze-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.analyze-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.analyze-btn .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Action Buttons Container */
.action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

/* Demo Results Section */
.demo-results {
  padding: 4rem 1rem;
  background: #f8f9fa;
}

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

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contract-preview {
  background: #2c3e50;
  color: white;
  padding: 2rem;
}

.jargon-analysis {
  background: #f8f9fa;
  padding: 2rem;
  border-left: 1px solid #e9ecef;
  border-right: 1px solid #e9ecef;
}

.risk-analysis {
  background: white;
  padding: 2rem;
}

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

.panel-icon {
  font-size: 1.5rem;
}

.panel-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: inherit;
}

.contract-content p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: white;
  opacity: 0.9;
}

.analysis-subtitle,
.risk-subtitle {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.analysis-items,
.risk-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.analysis-item,
.risk-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.analysis-item.jargon-item {
  border-left: 4px solid #ffc107;
}

.analysis-item.sentence-item {
  border-left: 4px solid #17a2b8;
}

.analysis-content h4,
.risk-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #2c3e50;
}

.analysis-content p,
.risk-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
  color: #6c757d;
}

.analysis-content p:last-child {
  margin-bottom: 0;
}

.analysis-tag,
.risk-tag {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.risk-tag.high-risk {
  background: #dc3545;
  color: white;
}

.risk-tag.medium-risk {
  background: #ffc107;
  color: #2c3e50;
}

.risk-tag.low-risk {
  background: #6c757d;
  color: white;
}

.analysis-tag.jargon-tag {
  background: #ffc107;
  color: #212529;
}

.analysis-tag.sentence-tag {
  background: #17a2b8;
  color: white;
}

.recommendation {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #d4edda;
  border-radius: 8px;
  border: 1px solid #c3e6cb;
}

.rec-icon {
  background: #28a745;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.rec-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #155724;
}

.rec-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  color: #155724;
}

/* Responsive Design for Results */
@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .jargon-analysis {
    grid-column: 1 / -1;
    border-left: none;
    border-right: none;
    border-top: 1px solid #e9ecef;
  }
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .jargon-analysis {
    grid-column: auto;
    border-left: none;
    border-right: none;
    border-top: 1px solid #e9ecef;
  }
  
  .analysis-item,
  .risk-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .analysis-tag,
  .risk-tag {
    align-self: flex-start;
  }
}

/* Why Section */
.why-section {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

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

.why-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.why-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.why-feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.why-feature-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.why-feature-content p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

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

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.stat-label {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 600;
}

/* Demo Section */
.demo-section {
  padding: 6rem 1rem;
  background: white;
}

.demo-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.demo-cta {
  margin-top: 3rem;
}

.btn-try-demo {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-try-demo:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  color: white;
  text-decoration: none;
}

.btn-try-demo i {
  font-size: 1rem;
}

.demo-container h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.demo-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.demo-pane {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.demo-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #6c757d;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.demo-content p {
  line-height: 1.6;
  color: #2c3e50;
  font-size: 1.1rem;
}

.demo-arrow {
  font-size: 2rem;
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-explanations {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.explanation-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  border-left: 4px solid #667eea;
}

.explanation-term {
  border-left-color: #ffc107;
}

.explanation-sentence {
  border-left-color: #17a2b8;
}

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

.explanation-badge {
  background: #3b82f6;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.explanation-term .explanation-badge {
  background: #ffc107;
  color: #2c3e50;
}

.explanation-sentence .explanation-badge {
  background: #17a2b8;
}

.explanation-badge.risk-high {
  background: #dc3545;
  color: white;
}

.explanation-badge.risk-medium {
  background: #ffc107;
  color: #2c3e50;
}

.explanation-badge.risk-low {
  background: #6c757d;
  color: white;
}

.explanation-header h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #2c3e50;
}

.explanation-content p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6c757d;
}


/* Steps Section */
.steps-section {
  padding: 6rem 1rem;
  background: white;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.steps-container h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #2c3e50;
}

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

.step-item {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
}

.step-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.step-item p {
  color: #6c757d;
  line-height: 1.6;
}

/* Step with integrated demo */
.step-with-demo {
  margin-bottom: 3rem;
}

.step-with-demo .demo-card {
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Security Section */
.security-section {
  padding: 6rem 1rem;
  background: white;
}

.security-container {
  max-width: 1000px;
  margin: 0 auto;
}

.security-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.security-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.security-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.security-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}

.security-highlight .security-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.security-highlight span:last-child {
  color: #2c3e50;
  font-weight: 500;
}

.security-links {
  display: flex;
  gap: 2rem;
}

.security-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid #3b82f6;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.security-link:hover {
  background: #3b82f6;
  color: white;
  text-decoration: none;
}

.legal-disclaimer {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #ffc107;
}

.legal-disclaimer p {
  margin: 0;
  color: #6c757d;
  line-height: 1.6;
}

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

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.faq-container h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
}

.faq-main, .faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.faq-item p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Use Cases Section */
.use-cases-section {
  padding: 80px 0;
  background: #f8fafc;
}

.use-cases-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.use-cases-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 60px;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.use-case-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.use-case-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.use-case-item p {
  margin: 0;
  font-size: 1.1rem;
  color: #4a5568;
  font-weight: 500;
}

@media (max-width: 768px) {
  .use-cases-container h2 {
    font-size: 2rem;
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .use-case-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* Final CTA */
.final-cta {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
  color: white;
  text-align: center;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-secondary-hero {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.cta-note {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.cta-note p {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 1rem 4rem;
  }
  
  .demo-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .demo-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
    font-size: 1.5rem;
  }
  
  .demo-pane {
    padding: 1rem;
  }
  
  .explanation-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .explanation-header h4 {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  
  .explanation-badge {
    align-self: flex-start;
  }
  
  .explanation-content p {
    font-size: 0.85rem;
    margin: 0.75rem 0;
  }
  
  .demo-content p {
    font-size: 1rem;
    line-height: 2;
  }
  
  .demo-label {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }
  
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    max-width: 300px;
  }

  .analyze-btn {
    width: 100%;
    max-width: 250px;
  }
  
  /* Why Section Responsive */
  .why-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* Security Section Responsive */
  .security-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .security-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .security-link {
    text-align: center;
  }
  
  /* FAQ Section Responsive */
  .faq-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .why-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  /* Extra small screen improvements for demo card */
  .demo-card {
    padding: 1rem;
    gap: 1rem;
  }
  
  .demo-pane {
    padding: 0.75rem;
  }
  
  .explanation-card {
    padding: 0.75rem;
  }
  
  .explanation-header h4 {
    font-size: 0.85rem;
    word-break: break-word;
  }
  
  .explanation-content p {
    font-size: 0.8rem;
    margin: 0.5rem 0;
  }
  
  .demo-content p {
    font-size: 0.9rem;
  }
}

/* Jargon highlighting styles */
.jargon.k-term {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  border-bottom: 2px solid #ffc107;
  font-weight: 600;
}

.jargon.k-sent {
  background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  border-left: 3px solid #17a2b8;
  font-weight: 500;
}