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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(to bottom right, #1a1a1a, #2d2d2d);
  color: white;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 184, 212, 0.1);
}

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

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.logo {
  height: 64px;
  object-fit: contain;
}

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

.nav-link {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #00B8D4;
}

.btn-nav {
  background: linear-gradient(to right, #D81B60, #E69138);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-nav:hover {
  box-shadow: 0 10px 15px -3px rgba(216, 27, 96, 0.3);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 5rem 1rem;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 2rem;
}

.hero-badge span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  background: rgba(0, 184, 212, 0.1);
  border: 1px solid rgba(0, 184, 212, 0.3);
  color: #00B8D4;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(to bottom right, white, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #9ca3af;
  margin-bottom: 2.5rem;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.btn-primary {
  background: linear-gradient(to right, #D81B60, #E69138);
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  box-shadow: 0 10px 15px -3px rgba(216, 27, 96, 0.3);
  transform: translateY(-4px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(216, 27, 96, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(216, 27, 96, 0.1);
  border-color: #D81B60;
}

/* Stats Section */
.stats-section {
  padding: 3rem 1rem;
  background: rgba(37, 37, 37, 0.5);
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(to right, #00B8D4, #E69138);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #9ca3af;
}

/* Services Section */
.services-section {
  padding: 5rem 1rem;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.section-subtitle {
  color: #00B8D4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: #9ca3af;
  max-width: 768px;
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  background: linear-gradient(to bottom right, #252525, rgba(37, 37, 37, 0.5));
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-free {
  border: 1px solid rgba(0, 184, 212, 0.1);
}

.service-free:hover {
  border-color: rgba(0, 184, 212, 0.3);
}

.service-plus {
  border: 1px solid rgba(230, 145, 56, 0.1);
}

.service-plus:hover {
  border-color: rgba(230, 145, 56, 0.3);
}

.service-premium {
  border: 1px solid rgba(216, 27, 96, 0.1);
}

.service-premium:hover {
  border-color: rgba(216, 27, 96, 0.3);
}

.service-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 1.5rem 1.5rem 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover .service-line {
  transform: scaleX(1);
}

.service-free .service-line {
  background: linear-gradient(to right, #00B8D4, #E69138);
}

.service-plus .service-line {
  background: linear-gradient(to right, #E69138, #FDD835);
}

.service-premium .service-line {
  background: linear-gradient(to right, #D81B60, #00B8D4);
}

.service-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.badge-free {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.badge-orange {
  background: rgba(249, 115, 22, 0.2);
  color: #fb923c;
}

.badge-pink {
  background: rgba(236, 72, 153, 0.2);
  color: #f472b6;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.color-cyan {
  color: #00B8D4;
}

.color-orange {
  color: #E69138;
}

.color-pink {
  color: #D81B60;
}

.service-price {
  color: #9ca3af;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.check-icon.cyan {
  color: #00B8D4;
}

.check-icon.orange {
  color: #E69138;
}

.check-icon.pink {
  color: #D81B60;
}

.service-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cyan {
  border: 2px solid rgba(0, 184, 212, 0.3);
  color: #00B8D4;
}

.btn-cyan:hover {
  background: #00B8D4;
  color: white;
}

.btn-orange {
  border: 2px solid rgba(230, 145, 56, 0.3);
  color: #E69138;
}

.btn-orange:hover {
  background: #E69138;
  color: white;
}

.btn-pink {
  border: 2px solid rgba(216, 27, 96, 0.3);
  color: #D81B60;
}

.btn-pink:hover {
  background: #D81B60;
  color: white;
}

/* Features Section */
.features-section {
  padding: 5rem 1rem;
  background: rgba(37, 37, 37, 0.3);
}

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

.feature-card {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
}

.icon-cyan {
  background: linear-gradient(to bottom right, rgba(0, 184, 212, 0.2), rgba(0, 184, 212, 0.1));
  color: #00B8D4;
}

.icon-orange {
  background: linear-gradient(to bottom right, rgba(230, 145, 56, 0.2), rgba(230, 145, 56, 0.1));
  color: #E69138;
}

.icon-yellow {
  background: linear-gradient(to bottom right, rgba(253, 216, 53, 0.2), rgba(253, 216, 53, 0.1));
  color: #FDD835;
}

.icon-pink {
  background: linear-gradient(to bottom right, rgba(216, 27, 96, 0.2), rgba(216, 27, 96, 0.1));
  color: #D81B60;
}

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

.feature-description {
  color: #9ca3af;
}

/* CTA Section */
.cta-section {
  padding: 5rem 1rem;
  background: linear-gradient(to bottom right, rgba(0, 184, 212, 0.1), rgba(216, 27, 96, 0.1));
}

.cta-container {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #9ca3af;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Contact Section */
.contact-section {
  padding: 5rem 1rem;
}

.contact-container {
  max-width: 1152px;
  margin: 0 auto;
}

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

.contact-card {
  background: #252525;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-phone {
  border: 1px solid rgba(0, 184, 212, 0.1);
}

.contact-phone:hover {
  border-color: rgba(0, 184, 212, 0.3);
}

.contact-email {
  border: 1px solid rgba(230, 145, 56, 0.1);
}

.contact-email:hover {
  border-color: rgba(230, 145, 56, 0.3);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.icon-magenta-orange {
  background: linear-gradient(to bottom right, #D81B60, #E69138);
}

.icon-magenta-yellow {
  background: linear-gradient(to bottom right, #D81B60, #FDD835);
}

.contact-label {
  color: #6b7280;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.contact-link {
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
  word-break: break-all;
}

.contact-link-cyan {
  color: #00B8D4;
}

.contact-link-cyan:hover {
  color: #E69138;
}

.contact-link-orange {
  color: #E69138;
}

.contact-link-orange:hover {
  color: #FDD835;
}

/* Footer */
.footer {
  padding: 3rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(0, 184, 212, 0.1);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.logo-footer {
  height: 80px;
  object-fit: contain;
}

.footer-text {
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.footer-website {
  color: #9ca3af;
  font-weight: 600;
  margin-bottom: 2rem;
}

.footer-copyright {
  color: #4b5563;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

  .hero-section {
    padding: 3rem 1rem;
  }

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

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }

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

  .cta-subtitle {
    font-size: 1.5rem;
  }
}