/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer-bottom{
    justify-content: center !important;
}

/* Updated color scheme to match preview with oklch colors */
:root {
  /* Background colors */
  --color-background: #faf9fb;
  --color-surface: #f5f3f7;
  --color-secondary: #2d1b3d;

  /* Text colors */
  --color-foreground: #2d1b3d;
  --color-secondary-foreground: #faf9fb;
  --color-muted-foreground: #6b5a7a;

  /* Brand colors */
  --color-primary: #a3ff12;
  --color-accent: #9b6dd6;

  /* Border colors */
  --color-border: #e5e0ea;

  /* Gradients */
  --gradient-purple-lime: linear-gradient(135deg, #7c3aed 0%, #9b6dd6 50%, #a3ff12 100%);
  --gradient-purple-dark: linear-gradient(154deg, #1c1a46 0%, #3c2a73 100%);
  --gradient-lime-purple: linear-gradient(135deg, #a3ff12 0%, #9b6dd6 100%);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
/* Updated header background to match preview */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(28, 26, 70, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 224, 234, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-foreground);
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  color: var(--color-secondary-foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--color-primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

/* Updated hero section with gradient background */
.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
  background: var(--gradient-purple-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155, 109, 214, 0.4) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(163, 255, 18, 0.4) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(155, 109, 214, 0.2);
  border: 1px solid rgba(163, 255, 18, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--color-secondary-foreground);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  color: var(--color-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--color-secondary-foreground);
}

.gradient-text {
  background: var(--gradient-purple-lime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(250, 249, 251, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Updated hero features styling */
.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(155, 109, 214, 0.1);
  border: 1px solid rgba(250, 249, 251, 0.1);
  border-radius: 16px;
  font-size: 0.875rem;
  color: var(--color-secondary-foreground);
  backdrop-filter: blur(10px);
}

.hero-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-lime-purple);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-feature-icon svg {
  color: var(--color-foreground);
}

.hero-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-feature-icon svg {
  color: var(--color-primary);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

/* Advantages Section */
/* Updated advantages section */
.advantages {
  background: var(--color-background);
  position: relative;
  overflow: hidden;
}

.advantages::before {
  content: "";
  position: absolute;
  top: 80px;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(155, 109, 214, 0.15) 0%, transparent 70%);
  filter: blur(80px);
}

.advantages::after {
  content: "";
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(163, 255, 18, 0.15) 0%, transparent 70%);
  filter: blur(80px);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.advantage-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(155, 109, 214, 0.05) 0%, rgba(163, 255, 18, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.advantage-card:hover {
  transform: translateY(-8px);
  border-color: rgba(163, 255, 18, 0.5);
  box-shadow: 0 20px 40px rgba(155, 109, 214, 0.1);
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--gradient-lime-purple);
  box-shadow: 0 8px 20px rgba(163, 255, 18, 0.2);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(163, 255, 18, 0.3);
}

.advantage-icon svg {
  color: var(--color-foreground);
}

.advantage-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.advantage-description {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Services Section */
/* Updated services section with gradient background */
.services {
  background: var(--gradient-purple-dark);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(163, 255, 18, 0.2) 0%, transparent 70%);
  filter: blur(100px);
}

.services::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155, 109, 214, 0.2) 0%, transparent 70%);
  filter: blur(100px);
}

.services .section-title,
.services .section-description {
  color: var(--color-secondary-foreground);
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(229, 224, 234, 0.5);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(155, 109, 214, 0.2);
}

.service-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-popular {
  background: var(--gradient-lime-purple);
  color: var(--color-foreground);
}

.badge-premium {
  background: linear-gradient(135deg, #9b6dd6 0%, #7c3aed 100%);
  color: white;
}

.badge-sale {
  background: linear-gradient(135deg, #a3ff12 0%, #7dd321 100%);
  color: var(--color-foreground);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--gradient-lime-purple);
  box-shadow: 0 8px 20px rgba(163, 255, 18, 0.2);
}

.service-icon svg {
  color: var(--color-foreground);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.service-feature svg {
  color: var(--color-primary);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 2px;
  background: var(--gradient-lime-purple);
  border-radius: 50%;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.price-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-purple-lime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* Stats Section */
/* Updated stats section */
.stats {
  background: var(--color-background);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-value::after {
  content: "+";
  color: var(--color-primary);
}

.stat-label {
  color: var(--color-muted-foreground);
}

/* Reviews Section */
/* Updated reviews section */
.reviews {
  background: var(--gradient-purple-dark);
}

.reviews .section-title,
.reviews .section-description {
  color: var(--color-secondary-foreground);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(229, 224, 234, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars svg {
  color: var(--color-primary);
  fill: var(--color-primary);
}

.review-text {
  color: rgba(250, 249, 251, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.review-author {
  padding-top: 1rem;
  border-top: 1px solid rgba(229, 224, 234, 0.1);
}

.review-name {
  font-weight: 600;
  color: var(--color-secondary-foreground);
  margin-bottom: 0.25rem;
}

.review-company {
  font-size: 0.875rem;
  color: rgba(250, 249, 251, 0.6);
}

/* SEO Text Section */
.seo-text {
  background: var(--color-bg);
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
}

.seo-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

@media(max-width: 962px){
   .seo-title {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
    } 
}

.seo-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.seo-content p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* FAQ Section */
/* Updated FAQ section */
.faq {
  background: var(--gradient-purple-dark);
}

.faq .section-title,
.faq .section-description {
  color: var(--color-secondary-foreground);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(229, 224, 234, 0.1);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--color-secondary-foreground);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--color-primary);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: rgba(250, 249, 251, 0.8);
  line-height: 1.6;
}

/* Contact Section */
/* Updated contact section */
.contact {
  background: var(--color-background);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-textarea {
  padding: 1rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-foreground);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(163, 255, 18, 0.1);
}

.form-textarea {
  resize: none;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(163, 255, 18, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  color: var(--color-primary);
}

.contact-info-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-value:hover {
  color: var(--color-primary);
}

.contact-info-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.contact-schedule {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.contact-schedule-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-schedule-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-schedule-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.contact-schedule-time {
  font-weight: 500;
}

.contact-schedule-note {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* Footer */
/* Updated footer */
.footer {
  background: var(--gradient-purple-dark);
  border-top: 1px solid rgba(229, 224, 234, 0.1);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-title {
  font-weight: 600;
  color: var(--color-secondary-foreground);
  margin-bottom: 1rem;
}

.footer-links,
.footer-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(250, 249, 251, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-contacts li {
  font-size: 0.875rem;
  color: rgba(250, 249, 251, 0.7);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(229, 224, 234, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(250, 249, 251, 0.7);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(250, 249, 251, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }

  .advantages-grid,
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Completed responsive styles for mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .stat-value {
    font-size: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Added button styles */
.btn-primary {
  background: var(--color-primary);
  color: var(--color-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(163, 255, 18, 0.3);
}

.btn-secondary {
  background: rgba(248, 248, 252, 0.05);
  color: var(--color-secondary-foreground);
  border: 2px solid rgba(163, 255, 18, 0.5);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-foreground);
  border-color: var(--color-primary);
}

.btn-outline {
  background: transparent;
  color: var(--color-foreground);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  background: var(--color-secondary);
  color: var(--color-secondary-foreground);
  border-color: var(--color-secondary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  height: 56px;
}

.btn-block {
  width: 100%;
  display: block;
}
