* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  overflow-x: hidden;
  line-height: 1.6;
}

.mp-bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
}

.mp-floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.mp-shape {
  position: absolute;
  background: linear-gradient(45deg, #6366f1, #8b5cf6, #06b6d4);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.mp-shape:nth-child(1) {
  width: clamp(40px, 8vw, 80px);
  height: clamp(40px, 8vw, 80px);
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.mp-shape:nth-child(2) {
  width: clamp(60px, 12vw, 120px);
  height: clamp(60px, 12vw, 120px);
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.mp-shape:nth-child(3) {
  width: clamp(30px, 6vw, 60px);
  height: clamp(30px, 6vw, 60px);
  top: 80%;
  left: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.mp-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  background: rgba(15, 15, 35, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.mp-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}

.mp-logo {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mp-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.mp-nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: color 0.3s ease;
}

.mp-nav-links a:hover {
  color: #6366f1;
}

.mp-cta-nav {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 1rem);
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.mp-cta-nav:hover {
  transform: translateY(-2px);
}

.mp-mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mp-mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

.mp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(6rem, 15vh, 8rem) 1.5rem clamp(3rem, 8vh, 5rem);
  position: relative;
}

.mp-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 8vw, 4rem);
  align-items: center;
  width: 100%;
}

.mp-hero-content h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mp-hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.mp-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.mp-btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: 0.75rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  min-width: 180px;
}

.mp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.mp-btn-secondary {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: 0.75rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  background: transparent;
  text-align: center;
  min-width: 180px;
}

.mp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #6366f1;
}

.mp-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mp-dashboard-mockup {
  width: 100%;
  max-width: 500px;
  height: clamp(250px, 40vw, 350px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: clamp(1rem, 3vw, 1.5rem);
  position: relative;
  animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.mp-mockup-header {
  height: clamp(30px, 6vw, 40px);
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  font-weight: 600;
  font-size: clamp(0.8rem, 2vw, 1rem);
}

.mp-mockup-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 2vw, 1rem);
  margin-bottom: 1.25rem;
}

.mp-mockup-card {
  height: clamp(60px, 12vw, 80px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mp-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 2vw, 1rem);
}

.mp-stat-card {
  height: clamp(40px, 8vw, 60px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mp-stats-section {
  padding: clamp(3rem, 10vw, 5rem) 1.5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.mp-stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.5rem, 5vw, 2.5rem);
  text-align: center;
}

.mp-stat-item {
  padding: clamp(1.5rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.mp-stat-item:hover {
  transform: translateY(-5px);
}

.mp-stat-number {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.mp-stat-label {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.mp-features-section {
  padding: clamp(5rem, 15vw, 7.5rem) 1.5rem;
}

.mp-features-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.mp-section-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mp-section-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: clamp(3rem, 8vw, 4rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2rem);
  margin-top: clamp(3rem, 8vw, 4rem);
}

.mp-feature-card {
  padding: clamp(2rem, 5vw, 2.5rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.mp-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99, 102, 241, 0.3);
}

.mp-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6366f1, #8b5cf6, transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.mp-feature-card:hover::before {
  transform: translateX(100%);
}

.mp-feature-icon {
  width: clamp(50px, 10vw, 60px);
  height: clamp(50px, 10vw, 60px);
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.mp-feature-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.mp-feature-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.mp-why-choose-section {
  padding: clamp(5rem, 15vw, 7.5rem) 1.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(99, 102, 241, 0.05));
}

.mp-why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
}

.mp-why-choose-content {
  text-align: center;
  margin-bottom: clamp(3rem, 10vw, 5rem);
}

.mp-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 4vw, 2rem);
}

.mp-why-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(2rem, 5vw, 2.5rem);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mp-why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99, 102, 241, 0.3);
}

.mp-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
}

.mp-why-icon {
  width: clamp(60px, 12vw, 80px);
  height: clamp(60px, 12vw, 80px);
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.mp-why-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.mp-why-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.mp-why-highlight {
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.mp-testimonials-section {
  padding: clamp(5rem, 15vw, 7.5rem) 1.5rem;
  background: linear-gradient(135deg, #0f0f23, #1a1a2e);
}

.mp-testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.mp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.5rem, 4vw, 2rem);
  margin-top: clamp(3rem, 8vw, 4rem);
}

.mp-testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(2rem, 5vw, 2.5rem);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.mp-testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99, 102, 241, 0.3);
}

.mp-testimonial-quote {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.mp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mp-author-avatar {
  width: clamp(40px, 8vw, 50px);
  height: clamp(40px, 8vw, 50px);
  border-radius: 50%;
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: clamp(0.8rem, 2vw, 1rem);
}

.mp-author-info h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.mp-author-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.mp-quote-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: rgba(99, 102, 241, 0.3);
}

.mp-process-section {
  padding: clamp(5rem, 15vw, 7.5rem) 1.5rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
}

.mp-process-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.mp-process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2rem, 6vw, 2.5rem);
  margin-top: clamp(3rem, 8vw, 4rem);
  position: relative;
}

.mp-process-step {
  position: relative;
  text-align: center;
}

.mp-step-number {
  width: clamp(50px, 10vw, 60px);
  height: clamp(50px, 10vw, 60px);
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: white;
}

.mp-step-title {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.mp-step-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.mp-cta-section {
  padding: clamp(4rem, 12vw, 6rem) 1.5rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  position: relative;
  overflow: hidden;
}

.mp-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.mp-cta-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.mp-cta-description {
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.mp-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.mp-btn-white {
  background: white;
  color: #6366f1;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
}

.mp-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mp-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
}

.mp-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mp-contact-popup {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 1.5rem;
  padding: clamp(2rem, 5vw, 2.5rem);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.mp-popup-overlay.active .mp-contact-popup {
  transform: scale(1);
}

.mp-popup-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  cursor: pointer;
  transition: color 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-popup-close:hover {
  color: #6366f1;
}

.mp-popup-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mp-popup-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
}

.mp-form-group {
  margin-bottom: 1.25rem;
}

.mp-form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.mp-form-group input,
.mp-form-group textarea,
.mp-form-group select {
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: white;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  transition: all 0.3s ease;
}

.mp-form-group input:focus,
.mp-form-group textarea:focus,
.mp-form-group select:focus {
  outline: none;
  border-color: #6366f1;
  background: rgba(255, 255, 255, 0.1);
}

.mp-form-group textarea {
  height: 100px;
  resize: vertical;
}

.mp-form-submit {
  width: 100%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: clamp(0.75rem, 2vw, 1rem);
  border: none;
  border-radius: 0.75rem;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mp-form-submit:hover {
  transform: translateY(-2px);
}

.mp-footer {
  padding: clamp(3rem, 8vw, 4rem) 1.5rem clamp(1.5rem, 4vw, 2rem);
  background: #0f0f23;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mp-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(2rem, 5vw, 2.5rem);
}

.mp-footer-section h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mp-footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 0.625rem;
  transition: color 0.3s ease;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.mp-footer-section a:hover {
  color: #6366f1;
}

.mp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

@media (max-width: 768px) {
  .mp-nav-links {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    gap: 2rem;
    transition: top 0.5s ease-in-out;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }

  .mp-nav-links.active {
    top: 0;
  }

  .mp-mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
  }

  .mp-mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .mp-mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mp-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mp-mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .mp-nav-links li,
  .mp-cta-nav {
    display: block;
  }

  .mp-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(2rem, 6vw, 3rem);
  }

  .mp-hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .mp-btn-primary,
  .mp-btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .mp-mockup-content {
    grid-template-columns: 1fr;
  }

  .mp-stats-grid {
    grid-template-columns: 1fr;
  }

  .mp-cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .mp-btn-white {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .mp-hero {
    padding: clamp(5rem, 12vh, 6rem) 1rem clamp(2rem, 5vh, 3rem);
  }

  .mp-stats-section,
  .mp-features-section,
  .mp-why-choose-section,
  .mp-testimonials-section,
  .mp-process-section {
    padding: clamp(3rem, 8vw, 4rem) 1rem;
  }

  .mp-cta-section {
    padding: clamp(3rem, 8vw, 4rem) 1rem;
  }

  .mp-footer {
    padding: clamp(2rem, 6vw, 3rem) 1rem clamp(1rem, 3vw, 1.5rem);
  }

  .mp-nav-container {
    padding: 0 1rem;
  }

  .mp-features-grid,
  .mp-why-grid,
  .mp-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .mp-process-timeline {
    grid-template-columns: 1fr;
  }

  .mp-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .mp-footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 360px) {
  .mp-stats-container {
    grid-template-columns: 1fr;
  }

  .mp-footer-container {
    grid-template-columns: 1fr;
  }

  .mp-hero-buttons,
  .mp-cta-buttons {
    gap: 0.75rem;
  }

  .mp-contact-popup {
    margin: 0.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}

@media (max-height: 500px) and (orientation: landscape) and (max-width: 896px) {
  .mp-hero {
    min-height: auto;
    padding: 6rem 1.5rem 2rem;
  }

  .mp-hero-container {
    gap: 2rem;
  }

  .mp-dashboard-mockup {
    height: 200px;
  }

  .mp-contact-popup {
    max-height: 85vh;
  }
}

@media (min-width: 1400px) {
  .mp-hero-container,
  .mp-stats-container,
  .mp-features-container,
  .mp-why-choose-container,
  .mp-testimonials-container,
  .mp-process-container,
  .mp-cta-container,
  .mp-footer-container {
    max-width: 1600px;
  }
}

@media (min-width: 1920px) {
  .mp-hero-content h1 {
    font-size: 5rem;
  }

  .mp-section-title {
    font-size: 4rem;
  }

  .mp-cta-title {
    font-size: 4rem;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .mp-dashboard-mockup {
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mp-feature-card,
  .mp-why-card,
  .mp-testimonial-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (prefers-color-scheme: dark) {
  .mp-contact-popup input,
  .mp-contact-popup textarea,
  .mp-contact-popup select {
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mp-shape,
  .mp-dashboard-mockup,
  .mp-floating-shapes {
    animation: none;
  }

  .mp-feature-card::before {
    display: none;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}

@media print {
  .mp-header,
  .mp-popup-overlay,
  .mp-floating-shapes,
  .mp-bg-animation {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .mp-hero,
  .mp-features-section,
  .mp-stats-section,
  .mp-why-choose-section,
  .mp-testimonials-section,
  .mp-process-section,
  .mp-cta-section,
  .mp-footer {
    background: white !important;
    color: black !important;
  }

  .mp-section-title,
  .mp-cta-title,
  .mp-hero-content h1,
  .mp-popup-title,
  .mp-logo,
  .mp-footer-section h3 {
    color: #6366f1 !important;
    -webkit-text-fill-color: #6366f1 !important;
  }
}