/* General styles */
body {
  margin: 0;
  font-family: sans-serif;
  background-color: #222;
  color: #fff;
  padding: 0;
  text-align: center;
}
section{
  padding: 1rem 0rem;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

/* Header styles */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background-color: #111;
  
  position: sticky;
  top: 0;
  z-index: 100;
}
.header.sticky{
  background-color: #1111117d;
  
}

.logo {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ff6600;
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  color: #e7e7e7;
}

.mobile-menu-button svg {
  width: 32px;
  height: 32px;
}

/* Hero section styles */
.hero {
  padding: 4rem 2rem;
  min-height: 600px;
  align-items: center;
  background-color: #020202;
  position: relative;
  overflow: hidden;
      background-image: url('bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}



.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1, .hero p, .hero a, .hero strong {
  color: white;
}
.hero p{
  margin: 2rem auto;
  font-size: 1.1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

p {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.cta-button {
  background-color: #ff6600;
  color: white !important;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  margin-top: 2rem;
  font-size: 1.1rem;
  transition: transform 0.2s, background-color 0.2s;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #e65c00;
  cursor: pointer;
}

.go-to-app-button{
  background-color: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}
.go-to-app-button:hover{
  background-color: transparent;
  border: 1px solid white;
}

.secondary-cta {
  background-color: transparent;
  color: #ff6600 !important;
  border: 1px solid #ff6600;
}

.secondary-cta:hover {
  background-color: #ff6600;
  color: white !important;
}

.no-credit-card {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.5rem;
}

.hero-cta-form {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
}

.hero-cta-form input {
  padding: 1.25rem;
  border-radius: 12px 0 0 12px;
  border: 1px solid #ccc;
  font-size: 1.1rem;
  width: 300px;
}

.hero-cta-form button {
  border-radius: 0 12px 12px 0;
  border: 1px solid #ff6600;
  cursor: pointer;
}

.hero-cta-form .cta-button {
  margin-top: 0;
}

.features-section {
  padding: 3rem 1rem;
  background-image:linear-gradient(0deg, transparent, black);
}

.feature {
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  display: block;
}

.feature h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature p {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.feature .cta-button {
  display: block;
  margin: 0 auto 2rem;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  color: #ff6600;
  border: 1px solid #ff6600;
}

.feature .cta-button:hover {
  background-color: #ff6600;
  color: white;
}

.feature img {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto 0;
  border-radius: 16px;
  display: block;
}
.testimonial-section{
  background-image:linear-gradient(0deg, #131315, transparent);
}

.testimonial-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1200px;
}

.testimonial-section .card {
  background: #444;
  border: 1px solid #555;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.testimonial-section .card:hover {
  transform: translateY(-5px);
}

.testimonial-section .card h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #e7e7e7;
}

.testimonial-section .card p {
  font-size: 1rem;
  color: #ccc;
  margin: 0;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.how-it-works {
  background-color: #222;
  padding: 6rem 2rem;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.section-hidden {
  opacity: 0;
  transform: translateY(20px);
}

.how-it-works.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.how-it-works h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.how-it-works p {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 800px;
  
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.how-it-works-card {
  text-align: center;
  border: 3px solid #9c4dff;
  box-shadow: 0 8px 24px rgba(156, 77, 255, 0.25);
  background-color: #333;
  border-radius: 1.5rem;
  max-width: 320px;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.how-it-works.is-visible .how-it-works-card {
  opacity: 1;
  transform: translateY(0);
}

.how-it-works.is-visible .how-it-works-card:nth-child(1) {
  transition-delay: 0.2s;
}

.how-it-works.is-visible .how-it-works-card:nth-child(2) {
  transition-delay: 0.4s;
}

.how-it-works.is-visible .how-it-works-card:nth-child(3) {
  transition-delay: 0.6s;
}

.how-it-works-card img {
  width: 90%;
  border-radius: 1rem;
  object-fit: cover;
  margin-bottom: 1.5rem;
  overflow: hidden;
  
}

.how-it-works-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #9c4dff;
}

.how-it-works-card p {
  font-size: 1rem;
  color: #ccc;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.footer-section h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section ul li a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #333;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.pricing-card {
  background: #070707;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 16px rgba(0,0,0,0.05);
  text-align: center;
}

.pricing-card.popular {
  border-color: #222222;
  box-shadow: 0 0 12px rgba(157, 77, 255, 0.321);
}

.pricing-card h3 {
  font-weight: 400;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  text-decoration: line-through;
  color: #999;
}

.pricing-card .price-discounted {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 0;
  color: #FFFFFF;
}

.pricing-card .price-per-month {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pricing-card ul li {
  margin-bottom: 0.75rem;
}

.example-section {
  padding: 6rem 2rem;
  background: radial-gradient(circle, #8a38f574, #22222237,#22222200);
}

.example-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.example-section p {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
}

.example-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.example-image {
  align-self: center;
  max-width: 500px;
}

.example-image img {
  width: 100%;
  border-radius: 16px;
}

.arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon {
  width: 80px;
  height: 80px;
  transform: rotate(90deg);
}

.smart-ads-section {
  padding: 6rem 2rem;
  text-align: center;
  background-color: #222;
}

.smart-ads-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.smart-ads-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smart-ad-image {
  width: 100%;
  max-width: 1000px;
  margin-top: 4rem;
  border-radius: 16px;
}

.example-grid .example-image,
.example-grid .arrow-container {
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.example-section .example-grid .example-image:nth-child(1) {
  transform: translateX(-100px) scale(0.9);
}

.example-section .example-grid .example-image:nth-child(3) {
  transform: translateX(100px) scale(0.9);
}

.example-section .example-grid .arrow-container {
  transform: scale(0);
}

.example-section.in-view .example-grid .example-image:nth-child(1) {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.example-section.in-view .example-grid .example-image:nth-child(3) {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.example-section.in-view .example-grid .arrow-container {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}
.packages h2{
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.testimonial-section h2{
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.final-cta-section {
  padding: 6rem 2rem;
  background-color: #131315;
}
.final-cta-section h3{
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.final-cta-section p{
  margin-top: 1rem;
}

@media (max-width: 1270px) {
  .arrow-icon {
    transform: rotate(180deg);
  }
}



/* Responsive styles */
@media (max-width: 768px) {
  .hero{
    padding:2rem 1rem;
  }
  .signup-button{
    font-size: 0.8rem !important;
  }
  .prompt-box{
    width: 90% !important;

  }
  .generate-button{
    font-size: 0.6rem !important;
  }
  .prompt-input{
    font-size: 0.8rem !important;
  }
  .chip{
    font-size: 0.5rem !important;
  }
  .feature{
    margin-bottom: 1rem !important;
  }
  .feature h2{
    font-size: 1.2rem !important;
  }
  .feature p{
    font-size: 1rem !important;
  }
  .feature .cta-button{
    padding: 0.75rem 1.25rem !important;
    font-size: 0.8rem !important;
  }
  .packages h2{
    font-size: 1.3rem !important;
  }
  .features-section{
    padding: 1.5rem 1rem !important;
  }
  .pricing-card .price-discounted {
    font-size: 1.5rem !important;
  }
  .testimonial-section h2{
    font-size: 1.3rem !important;
  }
  .testimonial-section .grid{
    margin: 0.5rem 1rem;
  }
  .final-cta-section h3{
    font-size: 1.5rem !important;
  }
  .cta-button{
    font-size: 0.9rem !important;
    padding: 0.75rem 1.25rem !important;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    gap: 0.3rem;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #111;
    box-shadow: 0 2px 4px rgba(255,255,255,0.1);
  }
  .nav-links a{
    padding: 1rem;
    text-align: right;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-button {
    display: block;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero {
    min-height: 500px;
  }
}

@media (max-width: 600px) {
  p {
    font-size: 0.8rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1rem;
  }
  .container {
    padding: 1rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 0.6rem;
  }
  .how-it-works {
    padding: 1.2rem 0rem;
  }
  .how-it-works h3 {
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
  }

  .how-it-works video {
    width: 98%;
  }
  .hero p {
    font-size: 1rem;
  }
  .header .logo {
    height: 30px;
  }
  .header .cta-button {
    font-size: 0.8rem;
    padding: 0.75rem 1.25rem;
  }
  .fab-demo {
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .features ul {
    font-size: 0.8rem;
    text-align: left;
  }
}

.watch-video-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff6600;
  color: white;
  padding: 10px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 9998;
  transition: transform 0.2s;
}

.watch-video-fab:hover {
  transform: scale(1.05);
}

.prompt-box {
  display: flex;
  align-items: center;
  border: 1px solid #555;
  box-shadow: 0 0px 6px #9c4dff;
  border-radius: 12px;
  padding: 0.5rem;
  background-color: #1d1d1d;
  margin: 2rem auto 0;
  gap: 0.5rem;
  width: 80%;
}

.signup-button {
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.signup-button:hover {
  background-color: #e65c00;
}

.prompt-input-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chips-wrapper {
  position: relative;
}

.chips-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(to right, rgba(51, 51, 51, 0), #1d1d1d 50%);
  pointer-events: none;
}

.prompt-chips {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding-right: 30px;
  overflow-x: auto;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.prompt-chips::-webkit-scrollbar {
  display: none;
}

.chip {
  background-color: #555;
  color: #fff;
  border: 1px solid #777;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.chip:hover {
  background-color: #777;
}

.prompt-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 1.7rem 0.75rem;
  outline: none;
  min-height: 2rem;
  resize: none;
  text-align: left;
}

.prompt-input:empty:before {
  content: attr(data-placeholder);
  color: #888;
  pointer-events: none;
}

.generate-button {
  background-color: transparent;
  color: #ff6600;
  border: 1px solid #ff6600;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
  margin-bottom: 0.5rem;
  align-self: end;
}

.generate-button:hover {
  background-color: #ff6600;
  color: white;
}
