/* Root variables for color palette */
:root {
  --black: #18171c;
  --purple: #a259ff;
  --yellow: #ffb800;
  --cyan: #0ff;
  --orange: #ff4d6d;
  --white: #fff;
  --gray: #23222a;
  --text: #eaeaea;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--black);
  color: var(--text);
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* Header */
.header {
  background: linear-gradient(90deg, var(--gray) 60%, var(--purple) 100%);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo {
  font-size: 2rem;
  font-weight: bold;
  color: var(--yellow);
  letter-spacing: 2px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--purple);
}
.btn-download {
  background: var(--yellow);
  color: var(--black);
  padding: 0.7em 1.5em;
  border-radius: 2em;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255,184,0,0.2);
  transition: background 0.2s;
}
.btn-download:hover {
  background: var(--orange);
  color: var(--white);
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 60vh;
}
.hero-content {
  flex: 1 1 350px;
  z-index: 2;
}
.hero-content h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text);
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  padding: 1em 2em;
  border-radius: 2em;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(162,89,255,0.2);
  transition: background 0.2s;
}
.btn-primary:hover {
  background: var(--yellow);
  color: var(--black);
}
.hero-image {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 250px;
}
.hero-image img {
  width: 320px;
  height: 420px;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(162,89,255,0.2);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}
.hero-svg {
  position: absolute;
  top: 10%;
  left: 80%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.7;
  animation: spin 8s linear infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* How It Works */
.how-it-works {
  background: var(--gray);
  padding: 4rem 2rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}
.how-it-works h2 {
  text-align: center;
  color: var(--yellow);
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.how-step {
  background: var(--black);
  border-radius: 1.5rem;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  transition: transform 0.2s;
  position: relative;
  z-index: 2;
}
.how-step:hover {
  transform: translateY(-8px) scale(1.04);
}
.how-step svg {
  margin-bottom: 1rem;
}
.how-step h3 {
  color: var(--purple);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.how-step p {
  color: var(--text);
  font-size: 1rem;
}
.how-image {
  grid-column: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-image img {
  width: 180px;
  height: 360px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,255,255,0.15);
  animation: float 3s ease-in-out infinite;
}

/* Features */
.features {
  background: var(--black);
  padding: 4rem 2rem 2rem 2rem;
  position: relative;
}
.features h2 {
  text-align: left;
  color: var(--purple);
  font-size: 2.2rem;
  margin-bottom: 2rem;
  margin-left: 1rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature {
  background: var(--gray);
  border-radius: 1.5rem;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(255,184,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  z-index: 2;
}
.feature:hover {
  box-shadow: 0 4px 32px rgba(255,184,0,0.18);
  transform: scale(1.04);
}
.feature svg {
  margin-bottom: 1rem;
}
.feature h3 {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.feature p {
  color: var(--text);
  font-size: 1rem;
}

/* Mockups */
.mockups {
  background: var(--gray);
  padding: 4rem 2rem 2rem 2rem;
  position: relative;
  overflow: visible;
}
.mockups h2 {
  text-align: center;
  color: var(--orange);
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.mockups-gallery {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  z-index: 2;
  position: relative;
}
.mockups-gallery img {
  width: 160px;
  height: 320px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(255,75,109,0.15);
  transition: transform 0.2s;
}
.mockups-gallery img:hover {
  transform: scale(1.06) rotate(-2deg);
}
.mockups-abs-img {
  pointer-events: none;
}

/* Testimonials */
.testimonials {
  background: var(--black);
  padding: 4rem 2rem 2rem 2rem;
  position: relative;
  overflow: visible;
}
.testimonials h2 {
  text-align: right;
  color: var(--cyan);
  font-size: 2.2rem;
  margin-bottom: 2rem;
  margin-right: 1rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial {
  background: var(--gray);
  border-radius: 1.5rem;
  padding: 2rem 1rem;
  text-align: left;
  box-shadow: 0 2px 16px rgba(0,255,255,0.08);
  position: relative;
  z-index: 2;
  font-style: italic;
}
.testimonial span {
  display: block;
  margin-top: 1rem;
  color: var(--purple);
  font-weight: bold;
  font-style: normal;
}
.testimonials-abs-img {
  pointer-events: none;
}

/* CTA */
.cta {
  background: linear-gradient(90deg, var(--purple) 60%, var(--yellow) 100%);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 2rem;
  margin: 3rem auto 2rem auto;
  max-width: 900px;
  box-shadow: 0 4px 32px rgba(255,184,0,0.12);
  position: relative;
}
.cta h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 2rem;
}
.btn-lg {
  font-size: 1.3rem;
  padding: 1.2em 2.5em;
}

/* Footer */
.footer {
  background: var(--gray);
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
  margin-top: 2rem;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 1rem auto;
  flex-wrap: wrap;
}
.footer-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--yellow);
}
.footer-copy {
  color: var(--text);
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .how-grid, .features-grid, .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mockups-gallery {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 800px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }
  .hero-image img {
    width: 220px;
    height: 300px;
  }
  .how-grid, .features-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
    .nav,.nav-links,.footer-nav ul{
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .header{
    position: relative;
  }
}
@media (max-width: 500px) {
  .header, .footer {
    padding: 1rem 0.5rem;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .cta h2 {
    font-size: 1.2rem;
  }
  .btn-primary, .btn-download, .btn-lg {
    font-size: 1rem;
    padding: 0.7em 1.2em;
  }

} 

/* Policy Page Styles */
.policy-content {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  min-height: 60vh;
}

.policy-content .container {
  background: var(--gray);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 1px solid rgba(162, 89, 255, 0.1);
}

.policy-content h1 {
  color: var(--yellow);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 2px solid var(--purple);
  padding-bottom: 1rem;
}

.policy-text {
  line-height: 1.8;
  font-size: 1.1rem;
}

.policy-text h2 {
  color: var(--cyan);
  font-size: 1.8rem;
  margin: 2rem 0 1rem 0;
}

.policy-text h3 {
  color: var(--orange);
  font-size: 1.4rem;
  margin: 1.5rem 0 0.8rem 0;
}

.policy-text p {
  margin-bottom: 1rem;
  color: var(--text);
}

.policy-text ul, .policy-text ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.policy-text li {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.policy-text a {
  color: var(--purple);
  text-decoration: none;
  border-bottom: 1px solid var(--purple);
  transition: color 0.2s;
}

.policy-text a:hover {
  color: var(--cyan);
}

@media (max-width: 600px) {
  .policy-content {
    padding: 2rem 1rem;
  }
  
  .policy-content .container {
    padding: 2rem 1.5rem;
  }
  
  .policy-content h1 {
    font-size: 2rem;
  }
  
  .policy-text {
    font-size: 1rem;
  }
} 