/* font-family: "Montserrat", sans-serif; */
/* font-family: "Robecha-Daniera-Regular"; */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #252525;
  background-color: #fff;
}

/* Header Section with Beige Background */
.header-section {
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.terms-header-section {
  padding: 6.5rem 1rem 2rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.header-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.header-content {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3.2rem;
  font-weight: 400;
  color: #2c2c2c;
  letter-spacing: -0.02em;
  opacity: 0;
  line-height: 50px;
  margin-bottom: 16px;
  animation: slideInUp 1s ease-out 0.3s forwards;
  font-family: "Robecha-Daniera-Regular";
}

.intro-text {
  font-size: 18px;
  color: #050505;
  line-height: 26px;
  max-width: 1200px;
  font-family: "Montserrat", sans-serif;

  margin: 0 auto;
  width: 91%;
  line-height: 1.6;
  opacity: 0;
  animation: slideInUp 1s ease-out 0.6s forwards;
}
@media screen and (max-width: 1200px) {
  .intro-text {
    margin-top: 30px;
    width: 100%;

    margin-bottom: 0 !important;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Main Container */

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 4rem 1rem;
  animation: slideInUp 1s ease-out 0.6s forwards;
}

.intro-text {
  font-size: 18px;
  color: #050405;
  margin-bottom: 3rem;
  line-height: 1.7;
  line-height: 26px;
  font-weight: 300;
}

.section {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 23px;
  font-weight: 600;

  color: #d9b771;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-content {
  color: #252525;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  font-size: 15px;
}

.bold-text {
  font-weight: 600;
  color: #252525;
  font-size: 15px;
}

.bullet-point {
  margin-bottom: 1rem;
}

.bullet-point strong {
  color: #252525;
  font-weight: 600;
  font-size: 18px;
}

.sub-list {
  list-style: disc;
  list-style-position: inside;
  margin-left: 1.5rem;
  margin-top: 1rem;
}

.sub-list li {
  margin-bottom: 0.5rem;
  color: #252525;
}

.subsection {
  margin-bottom: 2rem;
}

.subsection-title {
  font-size: 18px;
  font-weight: 700;
  color: #252525;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .intro-text,
  .section-content {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 2rem 0.75rem;
  }

  .section-title {
    font-size: 1.125rem;
  }
}

/* FAQ CTA Section */
.faq-cta-section {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow-y: hidden;
}

.faq-cta-section .faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 800px;
}

.faq-cta-section .faq-bg img {
  width: 100%;
  height: 100%;
}

.faq-cta-section h2 {
  font-size: 2.9rem;
  font-weight: 300;
  color: #d9b771;
  margin-bottom: 1.5rem;
  font-family: "Robecha-Daniera-Regular";
}

.faq-cta-section p {
  color: white;
  font-size: 1.2rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
  font-family: "Montserrat";
}
@media screen and (max-width: 767px) {
  .faq-cta-section p {
    width: 96%;
    margin: auto;
  }
  .page-title {
    font-size: 2.25rem;
  }
}

.faq-cta-section .faq-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.reach-out-link {
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease;
}

.reach-out-link:hover {
  color: #fde68a;
}

.btn-faq {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 3rem;
}

.btn-faq:hover {
  background: white;
  color: #047857;
}

/* Animations */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 2rem;
  }

  .product-header h1 {
    font-size: 2rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tone-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sequence-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .waveform-step {
    text-align: center;
  }

  .table-container {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 800px;
  }
}

@media (max-width: 480px) {
  .certification-badges {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .badge {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
  }

  .main-image {
    /* height: 16rem; */
  }


  .pricing-option {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .option-pricing {
    text-align: center;
  }
}

/* Why Partner Section */
.benefits-list {
  list-style: none;
  padding: 0;
  margin-left: 30px;
  margin-top: 20px;
}

.benefit-item {
  font-size: 15px;
  color: #050405;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .benefits-list {
    margin-left: 10px;
  }
}
/* .benefit-item::before {
  content: "•";
  color: #050405;
  font-size: 1rem;
  margin-right: 1rem;
  font-weight: bold;
} */

.custom-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 4rem 1rem;
  animation: slideInUp 1s ease-out 0.6s forwards;
}
@media screen and (max-width: 767px) {
  .custom-container {
    padding: 2rem 1rem;
  }
}
.products-grid {
  width: 80%;
  margin: auto !important;
  gap: 4rem !important;
}

.golden {
  background-color: #fbf7ef !important;
}
.products-grid1 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 10rem;
}

@media (max-width: 1355px) {
  .products-grid1 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 1060px) {
  .products-grid1 {
    gap: 2rem;

    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    width: 100% !important;
    gap: 2rem !important;
  }
}

@media (max-width: 767px) {
  .products-grid1 {
    gap: 2rem;

    grid-template-columns: repeat(1, 1fr);
  }
}

.you-may-also-like-section {
  padding: 0 !important;
}

.you-may-also-like-section h2 {
  font-size: 39px;
  font-weight: 300;
  color: #050505;
  text-align: center;
  margin-bottom: 3rem;
  font-family: "Robecha-Daniera-Regular";
  width: 55%;
  letter-spacing: 1px;
  margin: 30px auto;
  line-height: 50px;
}

@media screen and (max-width: 767px) {
  .you-may-also-like-section h2 {
    width: 100%;
    font-size: 27px;
    line-height: 30px;
  }
}

.product-card {
  width: 100%;
  max-width: 400px;
}

.product-image img {
  height: 100px;
}
.product-image {
  margin-bottom: 15px;
}

.product-info .limited-offer {
  color: #a27d4f;
}

.card-title {
  min-height: 68px;
}
.product-info p {
  padding-top: 3px;
  min-height: 50px;
  max-height: 50px;
  overflow: auto;
  opacity: 0.6;
  margin: 0;
  display: flex;
  align-items: center;
}
.product-info .rating .stars {
  display: flex;
  gap: 0.185rem;
}

.product-image2,
.product-image2 img {
  height: 20vh;
  max-height: 140px;
}

.you-may-also-like-section .product-card .product-image.fill-image img {
  width: 100%;
  height: auto;
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  max-height:128px  !important;
  object-fit: cover !important;
  
}
