@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #141414;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Hero */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  gap: 60px;
}

.hero-left {
  flex: 1;
}

.accent-bar {
  width: 48px;
  height: 4px;
  background: #e53935;
  margin-bottom: 28px;
}

.hero-left h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 18px;
  color: #999;
  line-height: 1.5;
  max-width: 420px;
}

.hero-right {
  flex: 1;
  max-width: 480px;
}

.hero-right p {
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 32px;
}

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

.form-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e53935;
  padding: 12px 0;
  font-size: 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  outline: none;
}

.form-group input::placeholder {
  color: #666;
}

.btn-cta {
  display: inline-block;
  background: #e53935;
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-cta:hover {
  background: #c62828;
}

.thank-you {
  display: none;
  font-size: 18px;
  color: #e53935;
  font-weight: 600;
}

/* Marquee */
.marquee-section {
  padding: 60px 0 40px;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 35s linear infinite;
}

.marquee-track img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  margin: 0 16px;
  border-radius: 12px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Footer */
.footer-text {
  text-align: center;
  padding: 40px 0 60px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #555;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 80px 24px 60px;
    gap: 48px;
  }
  .hero-left h1 {
    font-size: 36px;
  }
  .hero-right {
    max-width: 100%;
  }
}
