/* Proof Page Styles */
/* Using Home Page Color Variables */
:root {
  --primary-color: #FF004F; /* TikTok Red/Pink */
  --secondary-color: #6C63FF; /* Electric Blue */
  --accent-color: #FF6B35; /* Energetic Orange */
  --neutral-light: #FFFFFF;
  --neutral-gray: #F5F7FA;
  --text-dark: #333333;
  --text-darker: #111111;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 25px rgba(255, 0, 79, 0.15);
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-success: linear-gradient(135deg, var(--accent-color), #FF8C42);
}

/* Hero Section */
.proof-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.proof-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 0, 79, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(108, 99, 255, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 24px;
  color: #b0bcc7;
  margin-bottom: 15px;
  font-weight: 500;
}

.hero-subtext {
  font-size: 18px;
  color: #8a9ba8;
  margin-bottom: 50px;
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

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

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #b0bcc7;
  font-weight: 500;
}

/* Proof Gallery */
.proof-gallery {
  padding: 80px 0;
  background: var(--neutral-light);
}

.proof-section {
  margin-bottom: 80px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 50px;
}

/* Screenshots Grid */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.proof-card {
  background: var(--neutral-light);
  border: 2px solid rgba(255, 0, 79, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-md);
}

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

.proof-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.proof-card:hover .proof-image img {
  transform: scale(1.05);
}

.verified-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-primary);
  color: var(--neutral-light);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: var(--shadow-sm);
}

.verified-badge i {
  font-size: 14px;
}

.proof-info {
  padding: 20px;
}

.proof-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-darker);
  margin-bottom: 8px;
}

.proof-info p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.proof-date {
  font-size: 12px;
  color: #8a9ba8;
  font-style: italic;
}

/* Videos Grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.video-proof {
  background: var(--neutral-light);
  border: 2px solid rgba(255, 0, 79, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.video-proof:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.video-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.play-overlay i {
  font-size: 24px;
  color: var(--neutral-light);
  margin-left: 4px;
}

.play-overlay:hover {
  background: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.video-info {
  padding: 20px;
  text-align: center;
}

.video-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-darker);
  margin-bottom: 8px;
}

.video-info p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Data Grid */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.data-card {
  background: var(--neutral-light);
  border: 2px solid rgba(255, 0, 79, 0.2);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.data-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

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

.data-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.data-header i {
  font-size: 24px;
  color: var(--primary-color);
}

.data-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-darker);
  margin: 0;
}

.main-stat {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.sub-stats {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sub-stats span {
  font-size: 14px;
  color: #8a9ba8;
}

/* Verification Process */
.verification-process {
  padding: 80px 0;
  background: var(--neutral-gray);
}

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

.verification-content p {
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 40px;
}

.verification-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--neutral-light);
  border-radius: 12px;
  border: 2px solid rgba(255, 0, 79, 0.2);
  min-width: 150px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.step:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step i {
  font-size: 32px;
  color: var(--primary-color);
}

.step span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-darker);
  text-align: center;
}

/* Proof CTA */
.proof-cta {
  padding: 80px 0;
  background: var(--gradient-primary);
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--neutral-light);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Proof Modal */
.proof-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: var(--neutral-light);
  border-radius: 16px;
  border: 2px solid var(--primary-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  color: var(--neutral-light);
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}

.modal-body img,
.modal-body video {
  max-width: 100%;
  max-height: 60vh;
  border-radius: 12px;
  margin-bottom: 30px;
}

.modal-info {
  text-align: center;
  max-width: 500px;
}

.modal-info h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-darker);
  margin-bottom: 15px;
}

.modal-info p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.5;
}

.modal-navigation {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Footer Section */
.footer {
  background: var(--text-darker);
  color: var(--neutral-light);
  padding: 60px 0 20px;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--neutral-light);
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-brand-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.footer-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 300px;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 0, 79, 0.1);
  border: 1px solid rgba(255, 0, 79, 0.3);
  border-radius: 8px;
  transition: var(--transition);
}

.trust-badge:hover {
  background: rgba(255, 0, 79, 0.2);
  border-color: var(--primary-color);
}

.trust-badge i {
  font-size: 16px;
  color: var(--primary-color);
}

.trust-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-light);
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-brand {
    justify-content: center;
  }
  
  .footer-description {
    max-width: none;
  }
  
  .trust-badges {
    align-items: center;
  }
  
  .trust-badge {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-subtext {
    font-size: 16px;
  }
  
  .proof-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .data-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .verification-steps {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .modal-navigation {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .proof-hero {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .proof-gallery {
    padding: 60px 0;
  }
  
  .proof-section {
    margin-bottom: 60px;
  }
}