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

body {
  color: #333;
}

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

.attention {
  font-size: 10px;
}

/* Header */
.header {
  background: transparent;
  padding: 20px 40px;
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header img {
  height: 40px;
  width: auto;
}

.header a {
  text-decoration: none;
  color: #333;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: url('./images/hero.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
}

.hero-content {
  padding-left: 80px;
  color: white;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  animation: pulse 2s infinite;
  color: #c5c5c8;
}

.badge strong {
  font-size: 20px;
}

.hero-content h1 {
  font-size: 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 strong {
  font-size: 64px;
  margin: 0 2px;
}

.hero-content .cta-button {
  margin-top: 40px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 20px 50px;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-content .cta-button .arrow {
  height: 16px;
}

.hero-content .cta-button:hover {
  gap: 32px;
  padding-right: 38px;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.features h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 80px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

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

/* Product Section */
.product {
  padding: 100px 0;
  background: #fff;
}

.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-mockup {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(-10deg) rotateX(5deg);
  transition: all 0.3s ease;
}

.product-image-actual {
  height: 90%;
  object-fit: contain;
  object-position: center;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.spec-list {
  list-style: none;
}

.spec-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.spec-list li:before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  margin-right: 15px;
  width: 20px;
  height: 20px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.final-cta h2 {
  font-size: 2rem;
  font-weight: 700;
}

.final-cta .logo {
  height: 80px;
  margin-bottom: 30px;
}

.final-cta p {
  font-size: 1.3rem;
  margin-bottom: 40px;
}

.final-cta .cta-button {
  margin: 80px auto 20px auto;
  background: white;
  color: linear-gradient(45deg, #667eea, #764ba2);
  padding: 20px 50px;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 620px;
}

.final-cta .cta-button .arrow {
  height: 16px;
}

.final-cta .cta-button:hover {
  gap: 60px;
  padding-right: 30px;
}

.mobile {
  display: none;
}

/* Responsive */
@media (max-width: 1199px) {
  .mobile {
    display: inline;
  }

  small {
    font-size: 10px;
  }

  .header {
    padding: 20px 20px;
  }

  .hero {
    background: url('./images/hero_mobile.jpg') no-repeat center center/cover;
  }

  .hero-content {
    width: 100%;
    padding: 0 20px;
    gap: 40px;
  }

  .badge {
    color: white;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content .cta-button {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    justify-content: center;
  }

  .features h2 {
    font-size: 2rem;
  }

  .product-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-mockup {
    transform: none;
  }

  .product-text h2 {
    font-size: 2rem;
  }

  .product-text p {
    font-size: 1rem;
  }

  .final-cta h2 {
    font-size: 1.5rem;
  }

  .final-cta .logo {
    height: 60px;
  }

  .final-cta p {
    font-size: 1.1rem;
  }

  .final-cta .cta-button {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    justify-content: center;
  }
}
