* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(236, 72, 153, 0.1);
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

.logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ec4899;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ec4899;
  transition: width 0.3s ease;
}

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

.cta-button {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: #ec4899;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #fdf2f8, #fce7f3, #ffffff);
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.floating-1 {
  width: 300px;
  height: 300px;
  background: #fce7f3;
  top: 80px;
  left: 40px;
}

.floating-2 {
  width: 300px;
  height: 300px;
  background: #fce7f3;
  top: 160px;
  right: 40px;
  animation-delay: -2s;
}

.floating-3 {
  width: 300px;
  height: 300px;
  background: #f9a8d4;
  bottom: -40px;
  left: 80px;
  animation-delay: -4s;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fce7f3, #fdf2f8);
  color: #be185d;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #f9a8d4;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #be185d, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: linear-gradient(135deg, #f43f5e, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dark-text {
  color: #111827;
}

.hero-description {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
}

.highlight {
  color: #ec4899;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #be185d;
  border: 2px solid #f9a8d4;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #fdf2f8;
  border-color: #ec4899;
  transform: translateY(-2px);
}

.social-proof {
  display: flex;
  gap: 32px;
  align-items: center;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatars {
  display: flex;
  margin-left: -8px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -8px;
}

.avatar-1 {
  background: #fce7f3;
}
.avatar-2 {
  background: #fdf2f8;
}
.avatar-3 {
  background: #f9a8d4;
}
.avatar-4 {
  background: #fbcfe8;
}

.stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  font-size: 20px;
}

.proof-number {
  font-weight: 700;
  color: #111827;
  font-size: 16px;
}

.proof-label {
  font-size: 14px;
  color: #6b7280;
}

.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  background: linear-gradient(135deg, #fce7f3, #fdf2f8);
  border-radius: 48px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  border-radius: 48px;
  filter: blur(60px);
  opacity: 0.2;
  transform: rotate(6deg);
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 32px;
  position: relative;
  z-index: 10;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.card-1 {
  top: -16px;
  left: -16px;
}

.card-2 {
  bottom: -16px;
  right: -16px;
}

.floating-card i {
  font-size: 24px;
  color: #ec4899;
}

.card-number {
  font-weight: 700;
  font-size: 14px;
  color: #111827;
}

.card-text {
  font-size: 12px;
  color: #6b7280;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.stat-label {
  color: #fce7f3;
  font-size: 16px;
}

/* Services Section */
.services {
  padding: 120px 0;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  background: #fce7f3;
  color: #be185d;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.section-description {
  font-size: 20px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.service-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.service-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #374151;
}

.service-features i {
  color: #ec4899;
  font-size: 16px;
}

/* Results Section */
.results {
  padding: 120px 0;
  background: white;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.testimonial-name {
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.testimonial-age {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 4px;
}

.testimonial-result {
  font-size: 14px;
  font-weight: 600;
  color: #ec4899;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  margin-bottom: 16px;
}

.testimonial-quote {
  color: #374151;
  font-style: italic;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 120px 0;
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-bg-about {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  border-radius: 48px;
  filter: blur(40px);
  opacity: 0.2;
  transform: rotate(-6deg);
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 48px;
  position: relative;
  z-index: 10;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.credential-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.credential-card i {
  font-size: 32px;
  color: #ec4899;
}

.credential-title {
  font-weight: 700;
  font-size: 14px;
  color: #111827;
}

.credential-subtitle {
  font-size: 12px;
  color: #6b7280;
}

.about-description {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.about-stat {
  background: white;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ec4899;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 14px;
  color: #6b7280;
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid #f3f4f6;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #f9a8d4;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #ec4899;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 22px 22px 0 0;
}

.pricing-card.featured .pricing-header {
  padding-top: 24px;
}

.pricing-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-currency {
  font-size: 18px;
  color: #6b7280;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
}

.pricing-card.featured .price-amount {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 18px;
  color: #6b7280;
}

.pricing-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #374151;
}

.pricing-features i {
  color: #ec4899;
  font-size: 16px;
}

.pricing-button {
  width: 100%;
  background: linear-gradient(135deg, #6b7280, #374151);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-button.featured {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Final CTA Section */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #be185d, #ec4899, #f43f5e);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(40px);
}

.cta-element-1 {
  width: 160px;
  height: 160px;
  top: 40px;
  left: 40px;
}

.cta-element-2 {
  width: 240px;
  height: 240px;
  bottom: 40px;
  right: 40px;
}

.cta-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-highlight {
  color: #fce7f3;
}

.cta-description {
  font-size: 20px;
  color: #fce7f3;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-form {
  display: flex;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto 48px;
}

.cta-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-input::placeholder {
  color: #fce7f3;
}

.cta-submit {
  background: white;
  color: #ec4899;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-submit:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-guarantees {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

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

.guarantee-number {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.guarantee-label {
  font-size: 14px;
  color: #fce7f3;
}

.guarantee-divider {
  width: 1px;
  height: 48px;
  background: #f9a8d4;
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 700;
}

.footer-description {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h4 {
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f9a8d4;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #ec4899;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #be185d;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 14px;
}

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

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .social-proof {
    flex-direction: column;
    gap: 16px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

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

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

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

  .pricing-card.featured {
    transform: none;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-guarantees {
    flex-direction: column;
    gap: 16px;
  }

  .guarantee-divider {
    width: 48px;
    height: 1px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

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

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

  .service-card,
  .testimonial-card,
  .pricing-card {
    padding: 24px;
  }

  .hero-image img,
  .about-image img {
    height: 400px;
  }
}
