/* DataHub APK - Purple Elegant Design with Lavender Color Scheme */

/* CSS Custom Properties - Design System */
:root {
  /* Primary Colors - Purple Elegant Style with Lavender Accents */
  --primary: #8b5cf6;
  --primary-dark: #7c3aed;
  --primary-light: #a855f7;
  --accent: #c084fc;
  --accent-light: #ddd6fe;
  
  /* Secondary Colors */
  --secondary: #6b7280;
  --secondary-light: #9ca3af;
  --secondary-dark: #4b5563;
  
  /* Surface Colors */
  --background: #fafafa;
  --surface: #ffffff;
  --surface-elevated: #f8f9ff;
  --surface-dark: #1f1f2e;
  
  /* Text Colors */
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --text-white: #ffffff;
  
  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  --gradient-accent: linear-gradient(135deg, #c084fc 0%, #ddd6fe 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(139, 92, 246, 0.05);
  --shadow-md: 0 4px 6px rgba(139, 92, 246, 0.1);
  --shadow-lg: 0 10px 15px rgba(139, 92, 246, 0.1), 0 4px 6px rgba(139, 92, 246, 0.05);
  --shadow-xl: 0 20px 25px rgba(139, 92, 246, 0.1), 0 10px 10px rgba(139, 92, 246, 0.04);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout */
  --container-max-width: 1200px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 16px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--text-white);
}

.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-download {
  background: var(--success);
  color: var(--text-white);
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
}

.btn-download:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--text-white);
}

.btn-playstore {
  background: var(--text-primary);
  color: var(--text-white);
  padding: 16px 32px;
  font-size: 18px;
}

.btn-playstore:hover {
  background: var(--secondary-dark);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* Header & Navigation */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

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

.nav-link {
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

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

.nav-mobile {
  display: none;
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: var(--gradient-hero);
  color: var(--text-white);
  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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Section Layouts */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Features Section */
.features-section {
  background: var(--surface-elevated);
}

.features-category {
  margin-bottom: 5rem;
}

.features-category:last-child {
  margin-bottom: 0;
}

.features-category h3 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
  font-size: 2rem;
}

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

.feature-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 60px;
  height: 60px;
  filter: hue-rotate(270deg) saturate(1.2);
}

.feature-card h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.audience-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border-left: 4px solid var(--accent);
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.audience-card h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.audience-card p {
  margin-bottom: 1.5rem;
}

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

.audience-card li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.audience-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* Download Section */
.download-section {
  background: var(--surface-elevated);
}

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

.download-info {
  background: var(--surface);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.app-details h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-item {
  background: var(--accent-light);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.security-badges {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  justify-content: center;
}

.badge {
  text-align: center;
}

.badge img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
}

.badge span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.system-requirements h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.system-requirements ul {
  list-style: none;
  padding-left: 0;
}

.system-requirements li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.system-requirements li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.download-preview {
  text-align: center;
}

.phone-mockup img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Security Section */
.security-section {
  background: var(--surface);
}

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

.security-card {
  background: var(--surface-elevated);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--accent-light);
  transition: var(--transition-normal);
}

.security-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.security-card h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.safety-notice {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
}

.notice-content h4 {
  color: #d97706;
  margin-bottom: 1rem;
}

.notice-content p {
  color: #92400e;
  margin: 0;
}

/* How It Works Section */
.how-it-works-section {
  background: var(--surface-elevated);
}

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

.step-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  border: 2px solid var(--accent-light);
  transition: var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-card h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
  background: var(--surface);
}

.pricing-categories {
  margin-bottom: 3rem;
}

.pricing-category h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
}

.pricing-table {
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--accent-light);
}

th {
  background: var(--gradient-primary);
  color: var(--text-white);
  font-weight: 600;
}

td {
  color: var(--text-secondary);
}

tr:hover {
  background: var(--surface-elevated);
}

.savings-calculator {
  background: var(--accent-light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
}

.savings-calculator h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.savings-calculator p {
  color: var(--text-primary);
  margin: 0;
  font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
  background: var(--surface-elevated);
}

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

.faq-item {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-item h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
  background: var(--surface);
}

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

.review-card {
  background: var(--surface-elevated);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
  transition: var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

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

.rating-text {
  color: var(--text-secondary);
  font-weight: 600;
}

.review-card p {
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.reviewer strong {
  color: var(--primary);
}

.reviewer span {
  color: var(--text-light);
  display: block;
  font-size: 0.9rem;
}

.overall-rating {
  text-align: center;
  background: var(--gradient-accent);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
}

.rating-summary h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

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

.big-rating {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-dark);
}

.rating-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rating-count {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* News Section */
.news-section {
  background: var(--surface-elevated);
}

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

.news-card {
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 2rem;
}

.news-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.news-content h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.read-more:hover {
  color: var(--primary-dark);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-hero);
  color: var(--text-white);
  text-align: center;
}

.cta-content h2 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 2rem;
}

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

/* Footer */
.footer {
  background: var(--surface-dark);
  color: var(--text-white);
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  color: var(--accent-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.footer-section a:hover {
  color: var(--accent-light);
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 50%;
  transition: var(--transition-normal);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.8rem !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-mobile {
    display: block;
  }
  
  .menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  
  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .audience-grid {
    grid-template-columns: 1fr;
  }
  
  .download-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .download-buttons {
    align-items: center;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .rating-display {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .security-features {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-buttons {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .app-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .security-badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .pricing-table {
    font-size: 0.9rem;
  }
  
  th, td {
    padding: 0.5rem;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }

.bg-primary { background: var(--primary); }
.bg-accent { background: var(--accent); }
.bg-surface { background: var(--surface); }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--text-secondary); }
.text-white { color: var(--text-white); }