* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: #ffffff;
  color: #111;
  text-align: center;
  padding: 20px;
}

/* Logo */
.logo .shield {
  width: 50px;
  height: 50px;
  margin: 20px auto;
  background: #00c896;
  clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
}

/* Hero Section */
.hero h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero .subtext {
  font-size: 1rem;
  color: #666;
  margin-bottom: 25px;
}

/* Waitlist Form */
.waitlist-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.waitlist-form input {
  padding: 12px;
  width: 250px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.waitlist-form button {
  background: #00c896;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.waitlist-form button:hover {
  background: #00a97c;
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}

.social-proof img {
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
}

.social-proof span {
  font-size: 0.9rem;
  color: #444;
  margin-left: 10px;
}

/* Mockups */
.mockups {
  display: flex;
  justify-content: center;
  /* gap: 20px; */
  margin-top: 40px;
}

.mockups img {
  width: 60%;
  /* border-radius: 20px; */
  /* box-shadow: 0 10px 20px rgba(0,0,0,0.1); */
}
.waitlist-form-section iframe {
  width: 100%;
  max-width: 640px;
  height: 450px;
  border: none;
}
.waitlist-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 0.4rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.waitlist-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.8rem 1rem;
  border-radius: 50px;
  font-size: 1rem;
}

.waitlist-form input::placeholder {
  color: #aaa;
}

.waitlist-form button {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  border: none;
  outline: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.waitlist-form button:hover {
  background: linear-gradient(135deg, #43A047, #1B5E20);
  transform: translateY(-2px);
}