* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
  color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #000;
  border-bottom: 1px solid #222;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

.lang-switch button {
  background: #e10600;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* HERO */
.hero {
  padding: 120px 0;
  text-align: center;
}

.coupon-box {
  background: #111;
  padding: 15px 25px;
  border-radius: 8px;
  display: inline-flex;
  margin-top: 20px;
  align-items: center;
  gap: 15px;
}

/* BUTTON */
.copy-animated {
  background: #e10600;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.copy-animated:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(225, 6, 0, 0.6);
}

.copy-success {
  background: #00c853 !important;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #e10600;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
}

/* SECTIONS */
section {
  padding: 80px 0;
  text-align: center;
}

.dark {
  background: #111;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #111;
  padding: 25px;
  border-radius: 8px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 30px;
  color: #e10600;
  margin-bottom: 10px;
}

/* FAQ */
.faq-item {
  margin-bottom: 15px;
  text-align: left;
}

.faq-btn {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  background: #1a1a1a;
  padding: 0 15px;
}

.faq-item.active .faq-content {
  opacity: 1;
}

.faq-content p {
  padding: 15px 0;
  color: #ccc;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-weight: bold;
}

.faq-icon.rotate {
  transform: rotate(45deg);
}

/* FOOTER */
.footer {
  background: #000;
  border-top: 1px solid #222;
  padding: 30px 0;
  margin-top: 50px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  #menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: #000;
    flex-direction: column;
    padding-top: 80px;
    transition: right 0.3s ease;
    display: flex;
    gap: 20px;
    padding-left: 25px;
  }

  #menu.active {
    right: 0;
  }

  nav {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* HAMBURGER ICON */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
  border-radius: 2px;
}

/* Animate to X */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Show only on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}