/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #FBF5F3;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(251, 245, 243, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 24px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-300px);
}

.navbar.scrolled {
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
}

.nav-container {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.nav-links {
  display: none;
  flex-direction: column;
  padding: 30px;
  gap: 5%;
}

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

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 2rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -1px;
  left: 0;
  background: #1a1a1a;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: #1a1a1a;
  transition: all 0.3s ease;
}

.x-button {
  display: none;
  width: 50px;
  height: 50px;
  position: relative;
  cursor: pointer;
  background: #f5f5f5;
  transition: all 0.3s ease;
  margin: 30px;
}

.x-button.active {
  display: inline-block;
}

.line {
  position: absolute;
  height: 3px;
  width: 60%;
  top: 50%;
  left: 20%;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.line:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.line:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

.x-button:hover .line {
  background: #ff6b6b;
}


/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
}

.hero-container {
  width: 100%;
  padding: 0 20px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  transform: translateX(-500px);
}

.hero-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.7;
  max-width: 90%;
}

.cta-button {
  text-decoration: none;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  padding: 25px 80px;
  font-size: 1.2rem;
  position: relative;
  transition: color 0.2s ease-in-out;
  align-self: flex-start;
  white-space: nowrap;
  transform: translateX(-500px);
}

.cta-button::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  background: #1a1a1a;
  z-index: -1;
  transition: height 0.3s ease-in-out;
  bottom: 0;
  right: 0;
}
.cta-button:hover::after, .cta-button:active::after {
    height: 100%;
}

.cta-button:hover {
  color: white;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.5s ease;
  opacity: 0;
}

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

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
  transform: scale(0);
  opacity: 0;
}

.bubble-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.bubble-2 {
  top: 20%;
  left: 5%;
  animation-delay: 1s;
}

.bubble-3 {
  bottom: 30%;
  left: 10%;
  animation-delay: 2s;
}

.bubble-4 {
  bottom: 10%;
  right: 20%;
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Features Section */
.features {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.5);
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease,
              opacity 0.5s ease-in-out;
}

.feature-image img:hover {
  transform: scale(1.05);
}

.feature-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(26, 26, 26, 0.1);
  position: absolute;
  top: 1rem;
  right: 2rem;
}

.feature-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
  transition: transform 0.3s ease,
              opacity 0.5s ease-in-out;
}

.feature-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  transition: transform 0.3s ease,
              opacity 0.5s ease-in-out;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 2rem;
}
.slider-container svg {
  
  border-radius: 50%;
  padding: 15px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  box-sizing: unset;
  transition: all 0.4s ease;
}

.slider-container svg.default {
  fill: #c3c3c3;
}

/* Apply hover if element does not have default in it */
.slider-container svg:not(.default):hover {
  fill:  #ff6b6b;
}

/* Stats Section */
.stats {
  padding: 100px 0;
  text-align: center;
}

.stats h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Steps Section */
.steps {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.3);
}

.steps h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #1a1a1a;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.step-card {
  flex: 1;
  text-align: center;
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.step-icon {
  font-size: 2.5rem;
  margin: 1.5rem 0 1rem;
}

.step-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.step-card p {
  color: #666;
  line-height: 1.6;
}

.step-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ddd, transparent);
  align-self: center;
  margin-top: 80px;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.3);
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

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

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

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

.pricing-card.featured {
  transform: translateY(-20px);
  border: 2px solid #1a1a1a;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
  transform: translateY(-30px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.pricing-header p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0.2rem;
}

.yearly-price {
  display: none;
}

.period {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-features li:first-child {
  padding-top: 0;
}

.pricing-button {
  width: 100%;
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-button::after {
  content: "";
  width: 100%;
  height: 0%;
  bottom: 0;
  right: 0;
  background-color: #1a1a1a;
  z-index: -1;
  transition: all 0.3s ease;
  position: absolute;
}

.pricing-button:hover {
  color: white;
}

.pricing-button:hover::after {
  height: 100%;
}

.pricing-button.featured {
  background: #1a1a1a;
  color: white;
}

.pricing-button.featured:hover {
  background: #333;
  transform: translateY(-2px);
}

.pricing-guarantee {
  text-align: center;
  margin-top: 3rem;
  color: #666;
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.testimonials-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.stars {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.author-title {
  color: #666;
  font-size: 0.85rem;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  color: #ccc;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.initials {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-column h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-column a, .footer-column p {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #ccc;
}

.nav-left {
  height: 100vh;
  width: 50%;
  background-color: #FBF5F3;
}

.nav-right {
  height: 100vh;
  width: 50%;
  background-color: #FBF5F3;
}

.invisible {
  display: none;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay .nav-logo {
  display: none;
  padding: 30px;
}

.modal-overlay .nav-logo.active {
  display: block;
}

.modal-overlay.show {
  background-color: #FBF5F3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .pricing-toggle {
    flex-direction: column;
    gap: 0.5rem;
  }

  .step-card {
    width: 100%;
  }

  .hero-image {
    margin-top: 20px;
  }

  .bubble-1 {
    top: 10%;
    right: 10%;
  }

  .bubble-2 {
    top: 20%;
    left: 5%;
  }

  .bubble-3 {
    bottom: 5%;
    left: 10%;
  }

  .bubble-4 {
    bottom: 10%;
    right: 5%;
  }

  .cta-button {
    padding: 20px 70px;
    font-size: 1rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-text {
    justify-content: center;
    align-items: center;
  }

  .cta-button {
    align-self: center;
  }

  .nav-container {
    padding: 0px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .feature-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .steps-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .step-line {
    display: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav-links a {
    font-weight: 400;
    font-size: 1rem;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 40px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .step-card {
    padding: 2rem 1rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}