/* index.css */
.hero {
  position: relative;
  margin-top: 80px;
  overflow: hidden;
  padding: 160px 20px 100px;
  text-align: center;
}
.hero h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 10px;
}
.hero p {
  font-size: 24px;
  max-width: 800px;
  margin: 20px auto;
}
.cta-button {
  background: #f1bc46;
  color: #1e3152;
  border: none;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
  margin-top: 20px;
}
.cta-button:hover {
  background: #e0a837;
  transform: scale(1.05);
}
section {
  padding: 100px 20px;
  text-align: center;
}
section h2 {
  font-size: 48px;
  margin-bottom: 20px;
}
section p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.features,
.tech-features,
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.feature,
.tech-feature,
.stat {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
  max-width: 380px;
  text-align: left;
}
.feature i,
.tech-feature i {
  font-size: 40px;
  color: #f1bc46;
  margin-bottom: 10px;
}
.feature h3,
.tech-feature h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.feature p,
.tech-feature p,
.stat p {
  font-size: 18px;
}
.subscribe {
  background: rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
}
form {
  margin-top: 20px;
}
input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-size: 16px;
}
input[type="email"]:focus {
  outline: none;
  border-color: #f1bc46;
  box-shadow: 0 0 5px #f1bc46;
}
.success-alert {
  font-size: 18px;
  color: #f1bc46;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  animation: popFade 0.6s ease-in-out;
}
@keyframes popFade {
  0% { transform: scale(0.95); opacity: 0; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.tech-section {
  padding: 100px 20px;
  text-align: center;
  background: rgba(255,255,255,0.05);
}
.tech-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #f1bc46;
}
.tech-section p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.results-section {
  padding: 100px 20px;
  text-align: center;
  background: rgba(255,255,255,0.1);
}
.results-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #f1bc46;
}
.results-section .results-text {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 20px;
}
.stat h3 {
  font-size: 36px;
  margin-bottom: 10px;
}
.savings-section {
  padding: 100px 20px;
  text-align: center;
  background: rgba(255,255,255,0.08);
}
.savings-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #f1bc46;
}
.savings-section p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.savings-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.savings-stat {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
  max-width: 380px;
  text-align: left;
}
.savings-stat h3 {
  font-size: 36px;
  margin-bottom: 10px;
}
.savings-stat p {
  font-size: 18px;
}
.advantage-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.advantage-item {
  max-width: 380px;
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
}
.hero .hero-icon {
  position: absolute;
  z-index: 0;
  opacity: 0.3;
}
