/* ====================================
   HOME PAGE STYLES - Auditsyncro
   ==================================== */

/* Hero Section */
.banner {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
  color: white;
  padding: 40px 20px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/images/hero-image.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.banner-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-cta button {
  padding: 15px 40px;
  font-size: 1.05rem;
  border-radius: 6px;
  font-weight: 600;
}

.banner .btn-light {
  background: white;
  color: #2563eb;
}

.banner .btn-light:hover {
  background: #f0f9ff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Hero Offers Section */
.banner-offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  justify-items: center;
  margin-top: 40px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .banner-offers {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
}

.offer-button {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border: none;
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  width: 240px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.offer-button:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.offer-button img {
  height: 120px;
  width: 120px;
  object-fit: contain;
}

/* Hero Offers Container */
.hero-offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  align-items: center;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-offers a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 140px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hero-offers a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.button-text {
  font-size: 24px;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 1px;
}

.hero-offers a:hover .button-text {
  color: #1e40af;
}

.hero-offers a img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Platforms Section */
.platforms-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
}

.platforms-header {
  text-align: center;
  margin-bottom: 50px;
}

.platforms-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
}

.platforms-header p {
  font-size: 1.1rem;
  color: #e0f2fe;
  max-width: 600px;
  margin: 0 auto;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.service-icon {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-bottom: 3px solid #2563eb;
  padding: 20px;
}

.service-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.service-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.platform-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--accent-color);
}

.star {
  font-size: 1.1rem;
}

.rating-text {
  color: #5f6368;
  font-size: 0.9rem;
}

.platform-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.platform-features li {
  padding: 8px 0;
  color: #5f6368;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.feature-icon {
  color: var(--secondary-color);
  font-weight: bold;
}

.platform-offer {
  background: #ede9fe;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #1e3a8a;
  font-weight: 600;
}

.service-text {
  color: #5f6368;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.service-tags {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-tags li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5f6368;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.tag-icon {
  font-size: 1.1rem;
  display: inline-block;
}

.platform-cta {
  align-self: center;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1557c0 100%);
  color: white !important;
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  margin-top: auto;
}

.platform-cta:hover {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

/* Features Section */
.features-section {
  padding: 80px 20px;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
}

.feature-icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
}

.feature-item h3 {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-item p {
  color: #5f6368;
  line-height: 1.7;
}

/* CTA Section */
.cta-section, .cta-cta-section {
  background: linear-gradient(135deg, #1e40af 0%, #5b21b6 50%, #1e3a8a 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2, .cta-cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: white;
}

.cta-section p, .cta-cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

.cta-section .btn-light, .cta-cta-section .btn-light {
  color: #1e40af;
  background: white;
}

.cta-section .btn-light:hover, .cta-cta-section .btn-light:hover {
  background: #f3e8ff;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f3e8ff 0%, #ede9fe 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--secondary-color);
}

.testimonial-text {
  color: #5f6368;
  margin-bottom: 20px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h5 {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.author-info p {
  margin: 0;
  color: #5f6368;
  font-size: 0.85rem;
}

/* labels Section */
.labels-section {
  background: linear-gradient(135deg, #2d1b69 0%, #3730a3 100%);
  padding: 60px 20px;
  text-align: center;
}

.labels-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.label-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.label-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 auto 15px;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}

.label-label {
  color: #e9d5ff;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

/* Comparison Table Section */
.comparison-section {
  background: linear-gradient(135deg, #1e1b4b 0%, #2d1b69 100%);
  padding: 80px 20px;
  color: white;
}

.comparison-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-label {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comparison-header h2 {
  font-size: 2.8rem;
  margin: 20px 0;
  font-weight: 700;
}

.comparison-header h2 .white {
  color: white;
}

.comparison-header h2 .orange {
  color: var(--primary-color);
}

.comparison-subtitle {
  color: #a0a0a0;
  font-size: 1.1rem;
  margin: 20px 0 0 0;
  line-height: 1.6;
}

.comparison-table {
  overflow-x: auto;
  background: #151515;
  border-radius: 10px;
  border: 1px solid #333;
  padding: 20px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.comparison-table thead th {
  background: #1a1a1a;
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #333;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.comparison-table tbody td {
  padding: 15px;
  border-bottom: 1px solid #2a2a2a;
  color: #e0e0e0;
}

.comparison-table tbody tr:hover {
  background: #1a1a1a;
}

.comparison-table .orange {
  color: var(--primary-color);
  font-weight: 600;
}

  color: #707070;
  font-weight: 600;
}

.comparison-table .value {
  font-weight: 600;
}

.comparison-table .check,
.comparison-table .cross {
  font-size: 1.3rem;
  font-weight: 700;
  display: inline-block;
}

/* Information Section */
.information-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  color: #1a1a1a;
}

.information-section article {
  margin-bottom: 50px;
}

.information-section h2 {
  color: #1a1a1a;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.information-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.information-section strong {
  color: #1a1a1a;
  font-weight: 700;
}

.information-box {
  background: #f5f5f5;
  padding: 20px;
  border-left: 4px solid #ff8c00;
  border-radius: 4px;
  margin-top: 20px;
}

.information-box p {
  margin: 0;
  color: #555;
}

.information-conclusion {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid #ff8c00;
}

.information-conclusion h2 {
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 20px;
}

.information-conclusion p {
  color: #555;
  margin-bottom: 15px;
}

.information-conclusion p:last-child {
  margin-bottom: 0;
}

/* Platform Logo Color Update */
.service-icon {
  background-color: #797777;
}

/* Responsive */
@media (max-width: 768px) {
  .banner {
    padding: 60px 20px;
    min-height: 600px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .platforms-section,
  .features-section,
  .cta-section,
  .testimonials-section,
  .information-section {
    padding: 60px 20px;
  }
  
  .platforms-header h2,
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .platforms-grid,
  .features-grid,
  .testimonials-grid {
    gap: 20px;
  }
  
  .hero-cta {
    gap: 10px;
  }
  
  .hero-cta button {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
  
  .hero-offers {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
  }
  
  .hero-offers a {
    width: 150px;
    height: 110px;
  }
  
  .button-text {
    font-size: 18px;
  }
  
  .offer-button {
    width: 130px;
    height: 130px;
  }

  .offer-button div {
    font-size: 0.9rem;
  }
  
  .offer-button img {
    height: 60px;
    width: 60px;
  }
  
  .labels-section {
    padding: 50px 20px;
  }
  
  .labels-container {
    gap: 30px;
  }
  
  .comparison-header h2 {
    font-size: 2rem;
  }
  
  .comparison-section {
    padding: 60px 20px;
  }
  
  .comparison-table {
    overflow-x: auto;
    padding: 15px;
  }
  
  .comparison-table table {
    font-size: 0.85rem;
  }
  
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .banner {
    padding: 40px 15px;
  }
  
  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
  
  .platforms-section,
  .features-section,
  .cta-section,
  .testimonials-section,
  .information-section {
    padding: 40px 15px;
  }
  
  .platforms-header h2 {
    font-size: 1.5rem;
  }
  
  .cta-section h2 {
    font-size: 1.3rem;
  }
  
  .platforms-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .labels-container {
    gap: 20px;
  }
  
  .label-item {
    min-width: 120px;
  }
  
  .label-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  
  .label-label {
    font-size: 0.85rem;
  }
  
  .hero-offers {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 100%;
  }
  
  .hero-offers a {
    width: 100%;
    max-width: 180px;
    height: 100px;
  }

  .button-text {
    font-size: 16px;
  }

  .offer-button {
    width: 80px;
    height: 80px;
  }

  .offer-button div {
    font-size: 0.65rem;
  }
  
  
  .comparison-section {
    padding: 40px 15px;
  }
  
  .comparison-table {
    padding: 10px;
  }
  
  .comparison-table table {
    font-size: 0.75rem;
  }
  
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 8px;
  }
}
