* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  padding-top: 100px;
  background: linear-gradient(180deg, #4b0f73 0%, #2a0b46 100%);
  color: white;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 25px 70px;
  background: linear-gradient(135deg, #5d1796, #5d27af, #312e81), 
  radial-gradient(circle at 80% 20%, rgba(255,255,255,0.25), 
  transparent 60%);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 57px;
  height: 57px;
  background: black;
  border-radius: 12px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 40px;
}

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

.nav-links a:hover {
  color: white;
}

.nav-button {
  background: #1ecad3;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  color: white;
  transition: 0.3s;
}

.nav-button:hover {
  background: #17b4bc;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  padding: 0 8%;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 85% center;

  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;

  display: flex;
  flex-direction: column;
  gap: 25px; 
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: rgba(255,255,255,0.08);
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: 500;
  width: fit-content;
}

.dot {
  width: 10px;
  height: 10px;
  background: #1ecad3;
  border-radius: 50%;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.2;
  margin: 0;
}

.highlight {
  color: #1ecad3;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.hero-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;

  background: linear-gradient(135deg, #2ce3ff, #0097c9);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  color: white;

  transition: 0.3s ease;
  width: fit-content;
  margin-top: 10px;
}

.hero-btn:hover {
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #5d1796, #5d27af, #312e81), 
  radial-gradient(circle at 80% 20%, rgba(255,255,255,0.25), 
  transparent 60%);
  padding: 30px 50px;
  display: none;
  flex-direction: column;
  gap: 20px;
  z-index: 9999;
}

.mobile-menu a {
  text-decoration: none;
  color: white;
}

.mobile-upgrade {
  margin-top: 15px;
  background: #1ecad3;
  padding: 12px;
  border-radius: 25px;
  text-align: left;
  font-weight: 600;
}

@media (max-width: 900px) {
  .navbar {
    padding: 30px 20px;
  }

  .nav-links,
  .nav-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 140px 20px 80px 20px;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 90%;
    padding-left: 10px;
    gap: 20px;
  }

  .hero-image {
    object-position: 50% center;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.4;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-btn {
    font-size: 18px;
    padding: 14px 24px;
  }

  .badge {
    font-size: 14px;
    padding: 6px 14px;
  }
}

.about-section {
  padding: 80px 20px 120px;
  max-width: 1200px;
  margin: auto;
}

.about-container {
  background: linear-gradient(180deg, #5d1a8d, #4a1372);
  padding: 60px 40px;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 60px;
}

.about-container h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.about-container p {
  font-size: 20px;
  color: #d9c6ff;
  line-height: 1.7;
  max-width: 900px;
  margin: auto;
}

.about-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.about-card {
  background: linear-gradient(180deg, #5a1887, #3e0f63);
  padding: 40px 30px;
  border-radius: 30px;
  width: 100%;
  max-width: 350px;
}

.about-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.about-card p {
  color: #cdb8ff;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .about-cards {
    flex-direction: column;
    align-items: center;
  }
}

.faq-section {
  padding: 100px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.faq-section h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.faq-sub {
  color: #d9c6ff;
  margin-bottom: 50px;
}

.faq-wrapper {
  background: linear-gradient(180deg, #5a1887, #3e0f63);
  padding: 40px;
  border-radius: 30px;
}

.faq {
  background: linear-gradient(180deg, #612096, #4a1574);
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-header {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
}

.faq-body p {
  padding-bottom: 25px;
  color: #d9c6ff;
  line-height: 1.6;
}

.faq.active .faq-body {
  max-height: 300px;
}

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

.footer {
  padding: 100px 60px 40px;
  background: linear-gradient(180deg, #4b0f73, #2a0b46);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #d9c6ff;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column h4 {
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
  color: #cdb8ff;
  transition: 0.3s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #cdb8ff;
  font-size: 14px;
}

.disclaimer {
  text-align: right;
  max-width: 500px;
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .disclaimer {
    text-align: center;
  }
}

.legal-page {
  padding: 60px 20px 120px;
  max-width: 1000px;
  margin: auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 30px;
  text-decoration: none;
  color: #cdb8ff;
}

.back-link:hover {
  color: white;
}

.legal-page h1 {
  font-size: 48px;
  margin-bottom: 40px;
}

.legal-container {
  background: linear-gradient(180deg, #5a1887, #3e0f63);
  padding: 60px 50px;
  border-radius: 30px;
}

.last-updated {
  color: #cdb8ff;
  margin-bottom: 40px;
}

.legal-container h2 {
  margin-top: 40px;
  margin-bottom: 15px;
}

.legal-container p {
  color: #d9c6ff;
  line-height: 1.7;
  margin-bottom: 15px;
}

.legal-container ul {
  margin-left: 20px;
  margin-bottom: 20px;
  color: #d9c6ff;
}

.legal-container li {
  margin-bottom: 8px;
}

.how-hero {
  text-align: center;
  padding: 160px 20px 80px;
  background: linear-gradient(180deg, #4b0d78, #5c168f);
  color: white;
}

.how-hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

.how-hero p {
  font-size: 22px;
  color: #d9c6ff;
}

.steps-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 40px 120px;
  background: linear-gradient(180deg, #5c168f, #4b0d78);
  flex-wrap: wrap;
}

.step-card {
  position: relative;
  background: linear-gradient(180deg, #5a1887, #3e0f63);
  border-radius: 30px;
  padding: 60px 40px;
  width: 320px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #6e2db3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.08);
  border-radius: 18px;
}

.icon-box img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 20px;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.step-card p {
  color: #d9c6ff;
  margin-bottom: 25px;
}

.step-card a {
  color: #1ecad3;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 900px) {

  .how-hero h1 {
    font-size: 40px;
  }

  .steps-section {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    width: 90%;
  }

}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  width: 700px;
  max-width: 95%;
  border-radius: 20px;
  overflow: hidden;
  background: #3e0f63;
  animation: fadeIn 0.3s ease;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  color: white;
  font-size: 22px;
  font-weight: 600;
  position: relative;
}

.modal-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.1);
  border-radius: 15px;
}

.modal-icon img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  border-radius: 20px;
}

.modal-close {
  position: absolute;
  right: 25px;
  top: 20px;
  cursor: pointer;
  font-size: 20px;
}

.modal-content {
  padding: 40px;
}

.modal-section {
  background: linear-gradient(180deg, #5a1887, #3e0f63);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.modal-section h3 {
  margin-bottom: 15px;
}

.modal-section p {
  color: #d9c6ff;
  line-height: 1.6;
}

.modal-section ul {
  padding-left: 20px;
  color: #d9c6ff;
}

.modal-section li {
  margin-bottom: 10px;
}

.two-columns {
  columns: 2;
}

@keyframes fadeIn {

  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }

}

.app-carousel {
  padding: 100px 10px;
  text-align: center;
}

.carousel-container {
  position: relative;
  max-width: 700px;
  margin: auto;
}

.carousel-slide {
  display: none;
  animation: fade 0.4s ease;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 40%;
  max-width: 1500px;
  border-radius: 15px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  margin-bottom: 30px;
}

.carousel-description {
  background: linear-gradient(180deg, #5a1fa8, #401a82);
  padding: 30px;
  border-radius: 20px;
  color: #d9c6ff;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  font-size: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #7b2cff, #4b00c9);
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 5;
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .carousel-btn {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pricing {
  text-align: center;
  padding: 80px 20px;
}

.pricing h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.pricing-subtitle {
  color: #aaa;
  margin-bottom: 50px;
}

.pricing-container {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  width: 320px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.price {
  font-size: 48px;
  font-weight: bold;
  margin: 20px 0;
}

.price span {
  font-size: 16px;
  color: #aaa;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features li {
  margin: 12px 0;
  font-size: 16px;
}

.pricing-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1ecad3, #17a2b8);
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.pricing-button:hover {
  transform: scale(1.05);
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  width: 300px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.featured {
  border: 2px solid #1ecad3;
  transform: scale(1.05);
}

.free-btn {
  background: #444;
}

.free-btn:hover {
  background: #555;
}

.how-cta {
  padding: 140px 20px;
  display: flex;
  justify-content: center;
}

.cta-content {
  text-align: center;
  max-width: 800px;
}

.cta-content h2 {
  font-size: 48px;
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  color: #d9c6ff;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-primary {
  padding: 18px 45px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1ecad3, #17a2b8);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-4px);
}

.cta-secondary {
  padding: 18px 45px;
  border-radius: 50px;
  border: 2px solid #1ecad3;
  color: #1ecad3;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(30,202,211,0.1);
}

.contact-hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.contact-hero h1 {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
}

.contact-subtitle {
  font-size: 22px;
  color: #d9c6ff;
  margin-top: 15px;
}

.contact-card {
  max-width: 900px;
  margin: 60px auto 120px;
  padding: 60px 40px;
  background: linear-gradient(180deg, #5a1fa8, #401a82);
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.contact-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 20px;
}

.contact-description {
  font-size: 22px;
  color: #e5d8ff;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


.contact-email {
  font-size: 28px;
  font-weight: 600;
  color: #1ecad3;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 40px;
  transition: 0.3s;
}

.contact-email:hover {
  opacity: 0.8;
}

.external {
  font-size: 18px;
  margin-left: 6px;
}

#contact-form {
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: #1b0f33;
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: #a78bfa;
}

#contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

#contact-form button {
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg,#1ecad3,#17a2b8);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

#contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.contact-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 40px 0;
}

.contact-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.contact-item h3 {
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-item p {
  color: #cdb7ff;
  font-size: 16px;
}

@media (max-width: 768px) {

  .contact-hero h1 {
    font-size: 40px;
  }

  .contact-card {
    padding: 40px 25px;
  }

  .contact-bottom {
    flex-direction: column;
    gap: 30px;
  }

  .contact-email {
    font-size: 22px;
  }

}

.form-success{
  display:none;
  margin-top:20px;
  padding:16px;
  border-radius:12px;
  background:linear-gradient(135deg,#1ecad3,#17a2b8);
  color:white;
  font-weight:600;
  animation:fadeIn 0.4s ease;
}

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

.blog-hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.blog-tag {
  color: #1ecad3;
  font-weight: 600;
}

.blog-hero h1 {
  font-size: 48px;
  margin: 20px 0;
}

.blog-sub {
  color: #cdb7ff;
}

.blog-layout {
  display: grid;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 150px;
  padding: 0 20px;
}

.blog-content {
  background: linear-gradient(180deg, #5a1887, #3e0f63);
  padding: 40px;
  border-radius: 20px;
}

.answer-box {
  background: linear-gradient(135deg, #6a2fb3, #4c1c82);
  padding: 20px;
  border-left: 5px solid #1ecad3;
  border-radius: 15px;
  margin-bottom: 30px;
  font-weight: 600;
}

.blog-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  color: #cdb7ff;
}

.blog-content h2 {
  margin-top: 40px;
}

.blog-content p {
  color: #e5d8ff;
  line-height: 1.7;
}

.blog-content ul {
  margin-top: 15px;
  padding-left: 20px;
}

.blog-content li {
  margin-bottom: 10px;
}

.footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.disclaimer {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }

  .blog-hero h1 {
    font-size: 32px;
  }
}
.cyan-link {
  color: #1ecad3;
}

.cyan-link:hover {
  color: #17a2b8;
}