.showcase-section {
    padding: 60px 0;
    position: relative;
    overflow: visible;
    background: #ffffff;
}

.background-container {
    background: black;
    margin: 0 40px;
    border-radius: 40px;
    padding: 100px 0 220px;
    position: relative;
    overflow: hidden;
}

.section-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.section-title .highlight {
    color: #5b5bff;
}

.boxes-section {
    position: relative;
    margin-top: -200px;
    z-index: 10;
}

.cards-container {
    position: relative;
    z-index: 10;
}

.feature-box {
    background: #ffffff;
    border-radius: 32px;
    padding: 0;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.feature-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .background-container {
        margin: 0 30px;
        border-radius: 30px;
        padding: 80px 0 230px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 60px;
    }

    .boxes-section {
        margin-top: -150px;
    }

    .feature-box {
        height: 450px;
        margin-bottom: 30px;
    }

    .showcase-section {
        padding: 50px 0;
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .background-container {
        margin: 0 20px;
        border-radius: 24px;
        padding: 60px 0 200px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }

    .boxes-section {
        margin-top: -100px;
    }

    .feature-box {
        height: 380px;
        border-radius: 24px;
        margin-bottom: 20px;
    }

    .showcase-section {
        padding: 40px 0;
    }
}

/* Release Page */

.coming-soon-section {
  padding: 50px 20px 0 20px;
  font-family: "Roboto", sans-serif;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}

/* Title */
.coming-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Wrapper to center image */
.coming-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Slide up animation */
.coming-phone {
  width: 100%;
  max-width: 600px;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .coming-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .coming-phone {
    width: 70%;
  }
}


/* ===================================== */
/* FAQS */
/* ===================================== */


.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Section Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 400;
}

/* Section Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 400;
}

/* FAQ Accordion */
.faq-accordion {
    margin-bottom: 80px;
}

.faq-item {
    border-bottom: 2px solid #000000;
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #666666;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-answer.active {
    max-height: 500px;
    padding-bottom: 30px;
}

.faq-answer p {
    color: #333333;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Contact CTA */
.faq-cta {
    text-align: center;
    padding: 60px 30px;
    background: #000000;
    border-radius: 20px;
    color: #ffffff;
}

.faq-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    color: #000000;
}

/* ===================================== */
/* RESPONSIVE DESIGN */
/* ===================================== */

/* Tablet */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-header {
        margin-bottom: 50px;
    }

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

    .faq-subtitle {
        font-size: 1.1rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 25px 0;
    }

    .faq-icon {
        font-size: 1.75rem;
    }

    .faq-cta {
        padding: 50px 25px;
    }

    .faq-cta h3 {
        font-size: 1.75rem;
    }

    .faq-cta p {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 20px 0;
    }

    .faq-icon {
        font-size: 1.5rem;
        min-width: 25px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .faq-cta {
        padding: 40px 20px;
        border-radius: 15px;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }

    .faq-cta p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}


