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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(135deg, #060609 0%, #0f0f1a 50%, #0a0c0f 100%);
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Development Banner */
.development-banner {
  background: linear-gradient(135deg, #2d4a87 0%, #1e3a5f 100%);
  color: white;
  padding: 0.8rem 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}


.banner-text {
  font-weight: 600;
  font-size: 0.95rem;
}

.banner-cta {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: 
    radial-gradient(circle at 20% 80%, rgba(30, 144, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.08) 0%, transparent 50%);
}

.hero .container {
  text-align: center;
  max-width: 1000px;
}

.hero-content {
  z-index: 2;
}

.hero-logo-main {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.product-section {
  margin-bottom: 2rem;
}

.product-badge {
  display: inline-block;
  background: rgba(30, 144, 255, 0.2);
  border: 1px solid rgba(30, 144, 255, 0.4);
  color: #1e90ff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-name {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.product-logo-img {
  height: clamp(2.5rem, 5vw, 3.5rem);
  width: auto;
  filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(180deg) brightness(118%) contrast(119%) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  flex-shrink: 0;
}

.product-tagline {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: #a0a9c0;
  font-weight: 500;
  margin: 0;
}


.hero h1 {
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gradient-text {
  background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #a0a9c0;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
  border: none;
  cursor: pointer;
}

.cta-primary:hover,
.cta-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.6);
  outline: none;
}

.cta-primary.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.cta-secondary.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: #a0a9c0;
  padding: 1rem 2rem;
  border: 2px solid #2a2d47;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-secondary:hover,
.cta-secondary:focus {
  border-color: #1e90ff;
  color: white;
  transform: translateY(-2px);
  outline: none;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #1e90ff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #a0a9c0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Social Proof */
.social-proof {
  margin-top: 3rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-item {
  background: rgba(30, 144, 255, 0.1);
  border: 1px solid rgba(30, 144, 255, 0.2);
  color: #a0a9c0;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(30, 144, 255, 0.2);
  color: white;
  transform: translateY(-1px);
}



/* Features Section */
.features {
  padding: 8rem 0;
  background: rgba(0, 0, 0, 0.2);
}

/* Stats Section */
.stats-section {
  margin: 6rem 0;
  text-align: center;
}

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

.stat-card {
  background: rgba(30, 144, 255, 0.1);
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(30, 144, 255, 0.15);
  transform: translateY(-3px);
}

.stat-big {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #1e90ff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-desc {
  color: #a0a9c0;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonial Section */
.testimonial-section {
  margin: 6rem 0;
  text-align: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #ffffff;
  margin: 0 0 2rem;
  font-style: italic;
}

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

.author-name {
  font-weight: 700;
  color: white;
  font-size: 1rem;
}

.author-title {
  color: #a0a9c0;
  font-size: 0.9rem;
}

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

.section-badge {
  display: inline-block;
  background: rgba(30, 144, 255, 0.1);
  border: 1px solid rgba(30, 144, 255, 0.3);
  color: #1e90ff;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.section-header p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #a0a9c0;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card.featured {
  border: 2px solid rgba(30, 144, 255, 0.4);
  background: rgba(30, 144, 255, 0.08);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 144, 255, 0.6);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.feature-icon-wrapper {
  background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
}

.feature-icon {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.feature-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: white;
}

.feature-card p {
  color: #a0a9c0;
  margin: 0 0 auto;
  line-height: 1.7;
  font-size: 1rem;
  flex-grow: 1;
}

.feature-benefit {
  background: rgba(0, 255, 127, 0.1);
  border: 1px solid rgba(0, 255, 127, 0.3);
  color: #00ff7f;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1.5rem;
  align-self: center;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(0, 191, 255, 0.1) 100%);
}

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

.cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #a0a9c0;
  margin: 0 0 3rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #a0a9c0;
  font-size: 0.9rem;
  font-weight: 500;
}

.guarantee-icon {
  background: #00ff7f;
  color: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Contact Form Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.modal-close {
  background: none;
  border: none;
  color: #a0a9c0;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: white;
}

.contact-form {
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: white;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1e90ff;
  background: rgba(30, 144, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #1e90ff;
  border-color: #1e90ff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
}

.form-disclaimer {
  color: #a0a9c0;
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

/* Mobile responsiveness for form */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 1rem;
  }
  
  .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    max-height: 95vh;
  }
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 3rem 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-logo-main {
    max-width: 350px;
    margin-bottom: 2rem;
  }
  
  .product-section {
    margin-bottom: 1.5rem;
  }
  
  .hero h1 {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .product-name {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .product-logo-img {
    height: clamp(2rem, 4vw, 2.8rem);
  }
  
  
  .cta-group {
    justify-content: center;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .container {
    padding: 0 1rem;
  }
}

  .hero-stats {
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .trust-badges {
    gap: 1rem;
  }
  
  .trust-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cta-primary,
  .cta-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .banner-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .banner-text {
    font-size: 0.85rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}