/* 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;
  line-height: 1.6;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.hidden {
  display: none;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

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

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to bottom right, #10b981, #0d9488);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: #475569;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #10b981;
}

.nav-btn {
  padding: 0.5rem 1.5rem;
  background: #10b981;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.nav-btn:hover {
  background: #059669;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  background: transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
  background: #f1f5f9;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  background: white;
  border-top: 1px solid #e2e8f0;
}

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

.mobile-menu-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  color: #475569;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.mobile-menu-link:hover {
  background: #f8fafc;
}

.mobile-menu-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  background: #10b981;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
  background: #059669;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(to bottom right, #0f172a, #1e293b, #0f172a);
  color: white;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/313782/pexels-photo-313782.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

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

@media (min-width: 640px) {
  .hero-container {
    padding: 8rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-container {
    padding: 10rem 2rem;
  }
}

.hero-content {
  max-width: 48rem;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 9999px;
}

.hero-badge span {
  color: #6ee7b7;
  font-weight: 500;
  font-size: 0.875rem;
}

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

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

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

.hero-highlight {
  color: #6ee7b7;
}

.hero-text {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary {
  background: #10b981;
  color: white;
  box-shadow: 0 10px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: #059669;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.5);
}

.btn-primary svg {
  transition: transform 0.2s;
}

.btn-primary:hover svg {
  transform: translateX(0.25rem);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: #6ee7b7;
}

.stat-label {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-white {
  background: white;
}

.section-gray {
  background: #f8fafc;
}

.section-dark {
  background: #0f172a;
  color: white;
}

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

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.section-dark .section-title {
  color: white;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #475569;
  max-width: 48rem;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: #cbd5e1;
}

/* Services Grid */
.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  position: relative;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: #6ee7b7;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.05);
}

.service-card-popular {
  border-color: #10b981;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: #10b981;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
}

.service-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.service-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: #f1f5f9;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  color: #10b981;
}

.service-icon-popular {
  background: #10b981;
}

.service-icon-popular svg {
  color: white;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.service-highlight {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #10b981;
  background: #d1fae5;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.service-pricing {
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
}

.service-monthly {
  color: #64748b;
  margin-left: 0.5rem;
}

.service-description {
  color: #475569;
  margin-bottom: 1.5rem;
}

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

.service-features li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #334155;
  font-size: 0.875rem;
}

.service-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.service-btn {
  width: 100%;
  padding: 0.75rem;
  background: #0f172a;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.service-btn:hover {
  background: #1e293b;
}

.service-btn-popular {
  background: #10b981;
}

.service-btn-popular:hover {
  background: #059669;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  position: relative;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
}

.pricing-card-popular {
  background: linear-gradient(to bottom right, #d1fae5, #ccfbf1);
  border-color: #10b981;
  box-shadow: 0 20px 25px rgba(16, 185, 129, 0.15);
}

.pricing-card-premium {
  background: linear-gradient(to bottom right, #0f172a, #1e293b);
  color: white;
  border-color: #334155;
}

.pricing-popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 1rem;
  background: #10b981;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
}

.pricing-tier {
  font-size: 0.875rem;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 0.5rem;
}

.pricing-tier-premium {
  color: #6ee7b7;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.pricing-title-premium {
  color: white;
}

.pricing-description {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1.5rem;
}

.pricing-description-premium {
  color: #cbd5e1;
}

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

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
}

.pricing-price-premium {
  color: white;
}

.pricing-onetime {
  color: #64748b;
}

.pricing-onetime-premium {
  color: #94a3b8;
}

.pricing-monthly {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1.5rem;
}

.pricing-monthly-premium {
  color: #94a3b8;
}

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

.pricing-features li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #334155;
  font-size: 0.875rem;
}

.pricing-features-premium li {
  color: #e2e8f0;
}

.pricing-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-features-premium li::before {
  background: #6ee7b7;
}

.pricing-addons {
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
}

.pricing-addons-premium {
  border-top-color: #334155;
}

.pricing-addons-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.pricing-addons-title-premium {
  color: #94a3b8;
}

.pricing-addons-list {
  list-style: none;
}

.pricing-addons-list li {
  font-size: 0.75rem;
  color: #475569;
  padding: 0.25rem 0;
}

.pricing-addons-list-premium li {
  color: #cbd5e1;
}

.pricing-addons-list li::before {
  content: '• ';
}

.pricing-btn {
  width: 100%;
  padding: 0.75rem;
  background: #0f172a;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.pricing-btn:hover {
  background: #1e293b;
}

.pricing-btn-popular {
  background: #10b981;
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

.pricing-btn-popular:hover {
  background: #059669;
  box-shadow: 0 6px 8px rgba(16, 185, 129, 0.3);
}

.pricing-btn-premium {
  background: white;
  color: #0f172a;
}

.pricing-btn-premium:hover {
  background: #f1f5f9;
}

/* One-Time Offer */
.one-time-offer {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  gap: 1rem;
}

.one-time-icon {
  width: 3rem;
  height: 3rem;
  background: #d1fae5;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.one-time-icon svg {
  color: #10b981;
}

.one-time-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.one-time-text {
  color: #475569;
  margin-bottom: 1rem;
}

.one-time-btn {
  padding: 0.5rem 1.5rem;
  background: #0f172a;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.one-time-btn:hover {
  background: #1e293b;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: box-shadow 0.3s;
}

.benefit-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  background: #d1fae5;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-icon svg {
  color: #10b981;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.benefit-text {
  color: #475569;
  line-height: 1.75;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(to bottom right, #10b981, #0d9488);
  border-radius: 1rem;
  padding: 2rem;
  color: white;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 3rem;
  }
}

.cta-content {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-content {
    grid-template-columns: 1fr auto;
  }
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  color: #d1fae5;
  font-size: 1.125rem;
  line-height: 1.75;
}

.cta-button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-button-wrapper {
    flex-direction: row;
    justify-content: flex-end;
  }
}

.cta-button {
  padding: 1rem 2rem;
  background: white;
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
  text-align: center;
}

.cta-button:hover {
  background: #d1fae5;
}

/* Contact Section */
.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.contact-text {
  color: #cbd5e1;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

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

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

.contact-detail-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  color: #6ee7b7;
}

.contact-detail-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-detail-value {
  color: #94a3b8;
}

.consultation-box {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 0.75rem;
}

.consultation-title {
  font-weight: 700;
  color: #6ee7b7;
  margin-bottom: 0.5rem;
}

.consultation-text {
  color: #cbd5e1;
  font-size: 0.875rem;
}

.contact-form-wrapper {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  color: #0f172a;
}

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

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

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

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
  resize: none;
  font-family: inherit;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #10b981;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.form-submit:hover {
  background: #059669;
}

/* Footer */
.footer {
  background: #020617;
  color: #94a3b8;
  padding: 3rem 0;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

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

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to bottom right, #10b981, #0d9488);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: #1e293b;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: background-color 0.2s;
}

.social-link:hover {
  background: #10b981;
  color: white;
}

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

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

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 0.875rem;
}