/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background-color: #0b0b0b;
  color: #ffffff;
  line-height: 1.6;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.85)),
              url('/assets/hero-moto.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
}

.hero h1 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 64px;
  color: #ff1e1e;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 16px;
  color: #ff6b6b;
  margin-top: 10px;
}

.button {
  background-color: #ff1e1e;
  padding: 14px 32px;
  border-radius: 6px;
  color: white;
  font-size: 18px;
  display: inline-block;
  transition: background 0.3s, transform 0.3s;
}

.button:hover {
  background-color: #ff6b6b;
  transform: translateY(-2px);
}

/* Features Section */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  margin-top: 60px;
}

.feature-card {
  background-color: #161616;
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card img {
  width: 50px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: #ff1e1e;
  margin-bottom: 12px;
}

.feature-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #ffffff;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 30, 30, 0.5);
}

/* Why Section */
.why {
  padding: 20px 20px 10px;
  text-align: center;
}

.why h2,
.how h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  color: #ff1e1e;
  margin-bottom: 28px;
}

.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.why-card {
  background-color: #141414;
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.why-card h3,
.how-step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}

.why-card p,
.how-step p {
  color: #d9d9d9;
  font-size: 16px;
}

/* How Section */
.how {
  padding: 40px 20px 10px;
  text-align: center;
}

.how-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.how-step {
  background: linear-gradient(180deg, #161616 0%, #101010 100%);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
  background-color: #ff1e1e;
  color: #fff;
}

/* Separator */
.separator {
  height: 4px;
  width: 80px;
  background: linear-gradient(to right, #ff1e1e, #ff6b6b);
  margin: 60px auto;
  border-radius: 2px;
}

/* CTA Section */
.cta {
  background-color: #0d0d0d;
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  color: #ff1e1e;
  margin-bottom: 20px;
}

.cta p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-form {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.cta-form input[type="email"] {
  padding: 14px 20px;
  border-radius: 6px 0 0 6px;
  border: none;
  width: 250px;
  font-size: 16px;
}

.cta-form button {
  padding: 14px 28px;
  border-radius: 0 6px 6px 0;
  border: none;
  background-color: #ff1e1e;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.cta-form button:hover {
  background-color: #ff6b6b;
  transform: translateY(-2px);
}

.cta-form button:disabled {
  background-color: #999;
  cursor: not-allowed;
  opacity: 0.7;
}

.beta-note {
  font-size: 14px;
  color: #ff6b6b;
  margin-top: 10px;
}

/* Thanks Section */
.thanks-section {
  background-color: #0b0b0b;
  text-align: center;
  padding: 100px 20px;
}

.thanks-section img {
  max-width: 600px;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px; /* optional rounded corners */
  box-shadow: 0 10px 30px rgba(255,30,30,0.4); /* optional glow effect */
}

.thanks-section h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  color: #ff1e1e;
  margin-bottom: 20px;
}

.thanks-section p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #0b0b0b;
  text-align: center;
  padding: 60px 20px;
  font-size: 14px;
  color: #888888;
}

footer a {
  color: #ff1e1e;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer a img {
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 600px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .why h2,
  .how h2 {
    font-size: 30px;
  }

  .why-grid,
  .how-steps {
    grid-template-columns: 1fr;
  }

  .cta-form {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cta-form input[type="email"] {
    width: 100%;
    max-width: 350px;
    border-radius: 6px;
  }

  .cta-form button {
    width: 100%;
    max-width: 350px;
    border-radius: 6px;
  }
}
