* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

body {
  background-color: #0a0a0a;
  color: #f0f0f0;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  background: linear-gradient(145deg, #0d0d0d 0%, #1a0000 100%);
  padding: 40px 0 60px;
  border-bottom: 3px solid #c41e1e;
}

.logo-area {
  margin-bottom: 30px;
  text-align: center;
}

.logo {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo span {
  color: #c41e1e;
  font-weight: 300;
}

.tagline {
  color: #b3b3b3;
  font-size: 1.1rem;
  letter-spacing: 2px;
  display: inline-block;
  padding: 5px;
  border-bottom: 1px solid #c41e1e;
  padding-left: 14px;
  margin-top: 8px;
}

.cta-block {
  margin: 40px 0 30px;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background-color: #ffc107;
  color: #0a0a0a;
  font-size: 2rem;
  font-weight: 800;
  padding: 16px 50px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
  letter-spacing: 2px;
  border: 2px solid #ffc107;
  transition: 0.2s;
  margin-bottom: 20px;
}

.btn-primary:hover {
  background-color: transparent;
  color: #ffc107;
  border-color: #ffc107;
}

.btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background-color: #1f1f1f;
  color: #f0f0f0;
  padding: 12px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #c41e1e;
  transition: 0.2s;
  font-size: 1.1rem;
}

.btn-secondary.tg:hover {
  background-color: #c41e1e;
  color: #fff;
  border-color: #c41e1e;
}

.btn-secondary.wa:hover {
  background-color: #25D366;
  border-color: #25D366;
  color: #000;
}
.hero-intro{
    text-align: center;
}
.hero-intro h2 {
  font-size: 2.2rem;
  font-weight: 300;
  border-bottom: 2px solid #c41e1e;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.hero-intro p {
  font-size: 1.2rem;
  color: #ccc;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 60px 0;
  border-bottom: 1px solid #2a2a2a;
}

.feature-item {
  background: #121212;
  padding: 30px 20px;
  border-radius: 20px;
  border-left: 4px solid #c41e1e;
  transition: 0.3s;
}

.feature-item:hover {
  transform: translateY(-8px);
  background: #1c1c1c;
}

.feature-item h3 {
  color: #c41e1e;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.image-text-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 0;
}

.image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #0f0f0f;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

.image-text-block.reverse {
  flex-direction: row-reverse;
}

.content-img {
  width: 50%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.text-content {
  width: 50%;
  padding: 30px 30px 30px 0;
}

.image-text-block.reverse .text-content {
  padding: 30px 0 30px 30px;
}

.text-content h3 {
  color: #c41e1e;
  font-size: 2rem;
  margin-bottom: 20px;
}

.text-content p {
  color: #b0b0b0;
  font-size: 1.1rem;
}

.showcase {
  padding: 60px 0;
  border-top: 1px solid #c41e1e;
  border-bottom: 1px solid #c41e1e;
  background: #0d0d0d;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  width: 120px;
  height: 3px;
  background: #c41e1e;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.showcase-card {
  background: #151515;
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #333;
  transition: 0.2s;
}

.showcase-card:hover {
  border-color: #c41e1e;
  transform: scale(1.02);
}

.showcase-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 2px solid #c41e1e;
}

.showcase-card p {
  padding: 15px 5px;
  font-weight: 600;
  font-size: 1.2rem;
  color: #ddd;
}

.features-list {
  padding: 60px 0;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.list-item {
  background: #1a1a1a;
  padding: 18px 25px;
  border-radius: 60px;
  font-size: 1.15rem;
  border-left: 6px solid #c41e1e;
}

.list-icon {
  color: #c41e1e;
  font-weight: 800;
  margin-right: 15px;
}

.testimonials {
  padding: 60px 0;
  background: #0a0505;
  border-radius: 80px 80px 0 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testi-card {
  background: #151515;
  padding: 30px;
  border-radius: 40px;
  border: 1px solid #c41e1e;
  font-style: italic;
  color: #ccc;
}

.testi-card span {
  display: block;
  margin-top: 20px;
  color: #c41e1e;
  font-style: normal;
  font-weight: 600;
}

.blog-teaser {
  padding: 70px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-item {
  background: #121212;
  padding: 25px 20px;
  border-radius: 30px;
  border-bottom: 3px solid #c41e1e;
}

.blog-item h4 {
  color: #c41e1e;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.stats {
  display: flex;
  justify-content: space-between;
  background: #1e1e1e;
  padding: 40px 30px;
  border-radius: 80px;
  margin-bottom: 50px;
  border: 1px solid #c41e1e;
}

.stat-item {
  font-size: 1.25rem;
  font-weight: 500;
}

.stat-num {
  color: #c41e1e;
  font-weight: 800;
  font-size: 2rem;
  display: block;
}

.bottom-cta {
  text-align: center;
  padding: 40px 20px 60px;
  background: #0f0f0f;
  border-radius: 80px 80px 0 0;
  margin-top: 20px;
}

.bottom-cta h3 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.btn-large {
  font-size: 2.5rem;
  padding: 20px 70px;
  margin-bottom: 25px;
}

.copyright {
  margin-top: 60px;
  color: #555;
  font-size: 0.9rem;
  border-top: 1px solid #2a2a2a;
  padding-top: 25px;
}

@media (max-width: 1024px) {
  .feature-grid, .showcase-grid, .testi-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-text-block, .image-text-block.reverse {
    flex-direction: column;
  }
  .content-img, .text-content {
    width: 100%;
  }
  .text-content, .image-text-block.reverse .text-content {
    padding: 20px 25px;
  }
  .stats {
    flex-wrap: wrap;
    gap: 20px;
    border-radius: 40px;
  }
}

@media (max-width: 640px) {
  .feature-grid, .showcase-grid, .testi-grid, .blog-grid, .list-grid {
    grid-template-columns: 1fr;
  }
  .btn-group {
    flex-direction: column;
  }
  .btn-primary {
    font-size: 1.5rem;
    padding: 12px 30px;
  }
  .logo {
    font-size: 2.5rem;
  }
}