/* RESET & BASE 
  {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}*/

/* HERO */
.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.hero-images .full-banner {
  width: 95%;
  border-radius: 12px;
  max-width: 95%;
  height: auto;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}

.btn {
  background: #ffeb00;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e6d700;
}

/* PROMOS */
.promos {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.promos .promo {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.promos .promo:hover {
  transform: scale(1.01);
}

.promos .promo:nth-child(even) {
  flex-direction: row-reverse;
}

.promos img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  flex: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.promos .promo div {
  flex: 1;
  padding: 0 1rem;
}

.promos h2 {
  font-size: 2rem;
  color: #333366; /* Dark violet (similar to AuthKey tone) */
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.promos p {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
}
@media (max-width: 768px) {
  .promos .promo {
    flex-direction: column !important;
    text-align: center;
  }

  .promos img {
    max-width: 100%;
  }

  .promos .promo div {
    padding: 0;
  }
}

/* Updated QR Products Section (2-column layout, no card) */
.products-new {
  padding: 1rem 1rem;
  background: #fff;
}

.products-new h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0rem;
  color: #111;
  font-weight: 600;
}

.product-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
   margin-bottom: 1.2rem; 
  gap: 1.2rem;    
  border: none;
  box-shadow: none;
  background: none;
  padding: 0;
}

.product-img {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-img img {
  width: 450px;
  height: 450px;
  object-fit: contain;
  /* full image shown */
  border-radius: 0;
  /* no round corners */
  padding: 0;
  background: none;
  /* no background color */
  box-shadow: none;
}

.product-content {
  flex: 1 1 50%;
  padding: 0;
}

.product-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #222;
  font-weight: 600;
}

.product-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

.product-content ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  color: #555;
  margin: 0;
}

.product-content ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .product-detail {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }

  .product-img img {
    width: 260px;
    height: 260px;
  }

  .product-content ul {
    padding-left: 0;
    list-style-position: inside;
  }
}


/* Features Section */
.features {
  background: #f0f8ff;
  /* Soft light blue background for a fresh feel */
  padding: 4rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Title Style */
.features h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  /* Black text for the heading */
  margin-bottom: 3rem;
  letter-spacing: 0.5px;
  line-height: 1.3;
  position: relative;
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  /* Flexible grid */
  gap: 2rem;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Feature Cards */
.features-grid div {
  background: #ffffff;
  /* Light card background */
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  width: 100%;
  max-width: 350px;
  color: #000000;
  /* Black text for descriptions */
}

/* Hover Effect: Soft teal hover */
.features-grid div:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  background-color: #e0f7fa;
  /* Soft teal on hover */
  color: #2980b9;
  /* Darker blue text on hover */
}

/* Feature Title */
.features-grid strong {
  font-size: 1.6rem;
  color: #000000;
  /* Black text for feature titles */
  margin-bottom: 1rem;
  font-weight: 600;
  display: block;
  text-transform: capitalize;
}

/* Feature Text */
.features-grid small {
  font-size: 1rem;
  color: #000000;
  /* Black text for descriptions */
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid div {
    max-width: 100%;
    padding: 1.5rem;
  }
}

/* USE CASES */
.use-cases {
  background: #fff;
  padding: 3rem 1rem;
}

.use-cases h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
  color: #000000;
}

.use-case {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.use-case.reverse {
  flex-direction: row-reverse;
}

.use-case img {
  width: 40%;
  /* Reduced width */
  max-height: 450px;
  /* Increased but controlled */
  height: auto;
  /* Maintain aspect ratio */
  object-fit: contain;
  /* Show full image without cropping */
  border-radius: 12px;
}


.use-case div {
  width: 60%;
}

.use-case h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #222;
}

.use-case p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
}

@media (max-width: 768px) {
  .use-case {
    flex-direction: column !important;
    text-align: center;
  }

  .use-case img,
  .use-case div {
    width: 100%;
  }

  .use-case img {
    max-height: 300px;
    margin-bottom: 1.5rem;
  }
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
  color: #111;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.15rem;
  /* slightly larger */
  color: #111;
  /* darker for stronger emphasis */
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  /* more bold */
  padding: 0;
  font-family: inherit;
}

.faq-icon {
  font-size: 1.5rem;
  /* increased from 1rem */
  transition: transform 0.3s ease;
  color: #333;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-top: 0.8rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  font-weight: 400;
}


/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .promo,
  .use-case {
    flex-direction: column !important;
  }
}