/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Heebo', Inter, Roboto, sans-serif;
  background-color: #000000;
  color: #ffffff;
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.tagline {
  color: #22c55e;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.headline {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.instruction {
  color: #22c55e;
  font-size: 0.9rem;
  margin: 0 0 0.25rem 0;
}

.instruction-rotate {
  display: none;
  color: #ef4444;
  font-size: 0.8rem;
  margin: 0;
}

/* Video Section */
.video-section {
  margin-bottom: 2rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #333333;
  border-radius: 9999px;
  max-width: fit-content;
  margin: 0 auto;
}

.stars {
  color: #22c55e;
  font-size: 1rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.social-text {
  color: #ffffff;
  font-size: 0.85rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* CTA Button */
.cta-section {
  text-align: center;
  margin-bottom: 3rem;
}

.cta-button {
  display: inline-block;
  background-color: #22c55e;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
  transition: background-color 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  background-color: #16a34a;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
}

/* FAQ Section */
.faq-section {
  margin-top: 2rem;
}

.faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.5rem;
}

.faq-list {
  border: 1px solid #333333;
  border-radius: 8px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #333333;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  text-align: right;
  transition: background-color 0.2s;
  overflow-wrap: break-word;
  word-wrap: break-word;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-question > span:first-of-type {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  color: #ffffff;
  transition: transform 0.2s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.25rem 1rem;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* When open, show content - JS controls max-height */
.faq-item.active .faq-answer {
  max-height: 800px;
}

.faq-item.active .faq-answer p {
  padding-top: 0.25rem;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .container {
    padding: 1.75rem 1.25rem;
  }

  .headline {
    font-size: 1.5rem;
  }

  .social-proof {
    max-width: 100%;
    flex-wrap: wrap;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .container {
    padding: 1.25rem 1rem;
  }

  .header {
    margin-bottom: 1.75rem;
  }

  .tagline {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .headline {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .instruction {
    font-size: 0.85rem;
  }

  .instruction-rotate {
    display: block;
    font-size: 0.75rem;
  }

  .social-proof {
    flex-direction: column;
    max-width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    gap: 0.4rem;
  }

  .social-text {
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: center;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.9rem 2rem;
  }

  .faq-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 0.9rem 1rem;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .faq-answer p {
    padding: 0 1rem 0.85rem;
    font-size: 0.88rem;
    line-height: 1.55;
  }
}

/* Responsive - Small phones */
@media (max-width: 380px) {
  .container {
    padding: 1rem 0.75rem;
  }

  .headline {
    font-size: 1.15rem;
  }

  .tagline {
    font-size: 0.8rem;
  }

  .social-text {
    font-size: 0.75rem;
  }
}
