/* Safety Page - Professional Design */

body {
  font-family: 'Poppins', sans-serif;
}

.safety-container {
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 50px 20px 40px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-badge i {
  font-size: 1.4rem;
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.6rem;
  color: #d0d0d0;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

/* Section Titles */
.section-title {
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 35px;
  color: #ffffff;
}

.section-title i {
  margin-right: 12px;
  color: #ffffff;
}

/* Safety Approach Section */
.approach-section {
  margin: 60px 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.approach-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.approach-icon {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 15px;
  display: block;
}

.approach-item h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.approach-item p {
  font-size: 1.4rem;
  color: #d0d0d0;
  line-height: 1.5;
}

/* AI Protection Section */
.ai-protection-section {
  margin: 60px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.12) 100%);
  padding: 45px 35px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.ai-header {
  text-align: center;
  margin-bottom: 35px;
}

.ai-header i {
  font-size: 4.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  display: block;
}

.ai-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
}

.protection-content {
  max-width: 1000px;
  margin: 0 auto;
}

.protection-highlight-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.highlight-icon {
  font-size: 4rem;
  color: #ffffff;
}

.highlight-content h3 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.highlight-content p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
}

.ai-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.ai-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.ai-feature-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.ai-feature-item i {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  display: block;
}

.feature-text h4 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.feature-text p {
  font-size: 1.3rem;
  color: #d0d0d0;
  line-height: 1.5;
}

/* Protection Systems Section */
.protection-systems-section {
  margin: 60px 0;
}

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

.system-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 25px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.system-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.system-icon {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 18px;
}

.system-item h3 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.system-item p {
  font-size: 1.4rem;
  color: #d0d0d0;
  line-height: 1.5;
}

/* Statistics Section */
.statistics-section {
  margin: 80px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.stats-header {
  text-align: center;
  margin-bottom: 50px;
}

.stats-header .section-title {
  margin-bottom: 15px;
}

.stats-intro {
  font-size: 1.5rem;
  color: #b0b0b0;
  max-width: 650px;
  margin: 0 auto;
}

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

.statistic-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 30px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.statistic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.statistic-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.statistic-card:hover::before {
  opacity: 1;
}

.statistic-card.highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.18);
}

.statistic-card.highlight::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
}

.stat-icon-wrapper {
  width: 65px;
  height: 65px;
  min-width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 2.8rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.statistic-card:hover .stat-icon-wrapper {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.stat-title {
  font-size: 1.4rem;
  color: #e0e0e0;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 4px;
}

.stat-subtitle {
  font-size: 1.2rem;
  color: #999;
  margin-top: 6px;
}

.stat-description {
  font-size: 1.25rem;
  color: #a8a8a8;
  margin-top: 8px;
  line-height: 1.4;
}

.stats-note {
  text-align: center;
  font-size: 1.3rem;
  color: #999;
  padding: 20px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Reporting Section */
.reporting-section {
  margin: 60px 0;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.report-method {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.report-method:hover {
  transform: none;
}

.report-method:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 40px;
}

.report-method-icon {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.report-method h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 16px;
  text-align: center;
}

.report-method p {
  font-size: 1.4rem;
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.report-note {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 1.4rem;
  color: #e0e0e0;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: auto;
}

.report-note i {
  margin-right: 8px;
  color: #ffffff;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  color: #ffffff;
}

.contact-button i {
  font-size: 1.6rem;
}

/* Commitment Section */
.commitment-section {
  text-align: center;
  margin: 20px auto 60px;
  padding: 0 20px;
  max-width: 800px;
}

.commitment-icon {
  font-size: 4.5rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.commitment-section h2 {
  font-size: 2.6rem;
  color: #ffffff;
  margin-bottom: 18px;
}

.commitment-section p {
  font-size: 1.5rem;
  color: #d0d0d0;
  line-height: 1.7;
  margin-bottom: 28px;
}

.commitment-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge i {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .statistics-section {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .safety-container {
    padding: 0 30px;
  }
  
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .ai-features-list {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .systems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px 40px;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

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

  .ai-protection-section {
    padding: 40px 25px;
  }

  .ai-header h2 {
    font-size: 2.8rem;
  }

  .protection-highlight-section {
    padding: 30px 25px;
  }

  .highlight-content h3 {
    font-size: 2.2rem;
  }

  .ai-features-list {
    grid-template-columns: 1fr;
  }

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

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

  .statistic-card {
    padding: 25px 20px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .stat-title {
    font-size: 1.35rem;
  }

  .stat-icon-wrapper {
    width: 58px;
    height: 58px;
    min-width: 58px;
    font-size: 2.5rem;
  }

  .report-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .report-method:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 20px;
    padding-bottom: 30px;
  }

  .commitment-section {
    margin: 40px auto 40px;
    padding: 0 25px;
  }

  .commitment-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .safety-container {
    padding: 40px 15px;
  }

  .hero-section {
    padding: 0px 15px 30px;
  }

  .hero-badge {
    font-size: 1.2rem;
    padding: 6px 16px;
  }

  .hero-title {
    font-size: 5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .approach-item {
    padding: 30px 20px;
  }

  .approach-icon {
    font-size: 4rem;
  }

  .ai-protection-section {
    padding: 30px 20px;
  }

  .ai-header i {
    font-size: 4.5rem;
  }

  .ai-header h2 {
    font-size: 2.4rem;
  }

  .protection-highlight-section {
    padding: 25px 20px;
  }

  .highlight-icon {
    font-size: 3.5rem;
  }

  .highlight-content h3 {
    font-size: 2rem;
  }

  .highlight-content p {
    font-size: 1.5rem;
  }

  .ai-feature-item {
    padding: 25px 20px;
  }

  .ai-feature-item i {
    font-size: 3.2rem;
  }

  .system-item {
    padding: 30px 20px;
  }

  .system-icon {
    font-size: 4rem;
  }

  .statistic-card {
    padding: 22px 18px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-title {
    font-size: 1.3rem;
  }

  .stat-subtitle {
    font-size: 1.15rem;
  }

  .stat-icon-wrapper {
    width: 55px;
    height: 55px;
    min-width: 55px;
    font-size: 2.4rem;
  }

  .statistics-section {
    padding: 0 15px;
  }

  .report-method {
    padding: 0 20px;
  }
  
  .report-method:first-child {
    padding-bottom: 30px;
  }
  
  .report-method:last-child {
    padding-top: 0;
  }

  .commitment-section {
    padding: 0;
  }

  .commitment-icon {
    font-size: 4.5rem;
  }

  .commitment-section h2 {
    font-size: 2.6rem;
  }
}

