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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

/* Header/Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.logo {
  width: 180px;
  height: 180px;
  background: white;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: float 3s ease-in-out infinite;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,0.3);
  padding: 10px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero .subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 300;
}

.cta-primary {
  display: inline-block;
  background: white;
  color: #667eea;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  background: #f8f9fa;
}

.stat-card {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3em;
  font-weight: 700;
  color: #667eea;
  display: block;
}

.stat-label {
  color: #666;
  font-size: 1em;
  margin-top: 10px;
}

/* Features Section */
.section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5em;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.2em;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(102,126,234,0.15);
}

.feature-icon {
  font-size: 3em;
  margin-bottom: 20px;
  display: block;
}

.feature-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.feature-desc {
  color: #666;
  line-height: 1.8;
}

/* Segments Section */
.segments {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.segment-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.segment-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}

.segment-icon {
  font-size: 3em;
  margin-bottom: 20px;
  display: block;
}

.segment-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
}

.segment-desc {
  opacity: 0.9;
  line-height: 1.8;
}

/* Testimonial Section */
.testimonial {
  background: #f8f9fa;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
}

.quote-icon {
  font-size: 4em;
  color: #667eea;
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 30px;
}

.testimonial-text {
  font-size: 1.3em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: #667eea;
  font-size: 1.1em;
}

.testimonial-role {
  color: #666;
  margin-top: 5px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.cta-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Contact Form */
.contact-form {
  max-width: 500px;
  margin: 60px auto 0;
  background: rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  font-size: 1em;
  background: rgba(255,255,255,0.1);
  color: white;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.6);
}

.form-control:focus {
  outline: none;
  border-color: white;
  background: rgba(255,255,255,0.15);
}

select.form-control {
  cursor: pointer;
}

select.form-control option {
  background: #667eea;
  color: white;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: white;
  color: #667eea;
  border: none;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 20px 30px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }
  
  .hero .subtitle {
    font-size: 1.1em;
  }
  
  .section-title {
    font-size: 2em;
  }
  
  .features-grid, .segments-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .logo {
    width: 140px;
    height: 140px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}
