@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Zilla Slab", serif;
}

.space-grotesk {
  font-family: "Space Grotesk", sans-serif;
}

body {
  background: linear-gradient(135deg, #fff5f7 0%, #f2f4f8 100%);
  color: #1e293b;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: stretch;
  margin-bottom: 5rem;
}

.left-content {
  flex: 1.1;
  min-width: 260px;
}

.right-form {
  flex: 0.9;
  min-width: 280px;
}

/* logo style */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  display: inline-block;
}
.logo-black {
  color: #0f172a;
}
.logo-red {
  color: #ff3b30;
}

/* main heading */
.main-heading {
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 1.5rem 0 1.2rem 0;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.description {
  font-size: 22px;
  color: #334155;
  margin-bottom: 2rem;
  max-width: 90%;
  line-height: 40px;
  font-weight: 300;
}

/* CTA button + arrow */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #ff3b30;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(255, 59, 48, 0.2);
  padding-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;

  font-weight: 700;
  font-size: 18px;
}
.btn-primary:hover {
  background-color: #e02b20;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 59, 48, 0.3);
}
.btn-primary:active {
  transform: translateY(1px);
}
.arrow-icon {
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.btn-primary:hover .arrow-icon {
  transform: translateX(4px);
}

/* divider */
.divider {
  margin: 3rem 0 1rem 0;

  border: 1px solid #383838;
  width: 100px;
  /* max-width: 85%; */
}

.small-launch-text {
  font-size: 0.85rem;
  color: #64748b;
  letter-spacing: 0.3px;
}

/* ----- form card ----- */
.form-card {
  background: transparent;
  border-radius: 16px;
  box-shadow:
    0 20px 35px -12px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.02);
  padding: 2rem 1.8rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  border: 1px solid rgba(226, 232, 240, 0.6);
}
.form-card:hover {
  box-shadow: 0 24px 40px -16px rgba(0, 0, 0, 0.12);
}
.form-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: #0f172a;
  letter-spacing: -0.3px;
}
.input-group {
  margin-bottom: 1.3rem;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background-color: transparent;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  font-family: inherit;
  outline: none;
  color: #1e293b;
}
.input-group input:focus,
.input-group textarea:focus {
  border-color: #ff3b30;
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.15);
}
.input-group textarea {
  min-height: 100px;
  resize: vertical;
}
.submit-btn {
  /* width: 100%; */
  text-align: center;
  margin: auto;
  justify-content: center;
  margin-top: 0.5rem;
  background-color: #ff3b30;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* verticals section */
.verticals-section {
  margin: 8rem 0 3rem;
  text-align: center;
}
.verticals-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #0f172a;
}
.categories-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* gap: 2rem; */
  row-gap: 2rem;
  margin-bottom: 2.5rem;
}
.category-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 90px;
  transition: transform 0.2s;
  border-right: 1px solid black;
  padding-right: 15px;
  padding-left: 15px;
}
.category-item:last-child {
  border-right: 0;
}
.category-item span {
  font-size: 18px;
  font-weight: 400;
  font-family: "Space Grotesk", sans-serif;
}
.category-item:hover {
  transform: translateY(-5px);
}
.icon-circle {
  background: white;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  font-size: 1.9rem;
  transition: all 0.2s;
}
/* .category-item span:last-child {
  font-weight: 500;
  color: #1e293b;
  font-size: 0.95rem;
} */
/* bottom CTA cluster */
.bottom-cta-wrapper {
  border-radius: 40px;
  padding: 2rem 1.5rem;
  margin: 2rem 0 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}
.bottom-title {
  font-size: 1.65rem;
  font-weight: 400;
  color: #0f172a;
}
.bottom-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #ff3b30;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.bottom-btn:hover {
  background-color: #e02b20;
  transform: translateY(-2px);
}

/* footer */
.footer {
  border-top: 1px solid #cacaca;
  margin-top: 3rem;
  padding: 2rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: #000;
}
.footer span {
  text-align: center;
  margin: auto;
  font-size: 16px;
  letter-spacing: 1px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col strong {
  color: #0f172a;
  font-weight: 600;
}
.footer a {
  text-decoration: none;
  color: #ff3b30;
}
.footer a:hover {
  text-decoration: underline;
}
.copyright {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #000;
  padding-top: 1.2rem;
}

/* responsiveness */
@media (max-width: 820px) {
  .hero-grid {
    flex-direction: column;
    gap: 2rem;
  }
  .left-content,
  .right-form {
    width: 100%;
  }
  .description {
    max-width: 100%;
  }
  .divider {
    max-width: 100%;
  }
  .btn-primary,
  .submit-btn,
  .bottom-btn {
    width: 100%;
    justify-content: center;
  }
  .categories-list {
    gap: 1.2rem;
  }
  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  * {
    text-align: center;
  }
  .categories-list {
    flex-direction: column;
  }
  .category-item {
    flex-direction: column;
    border-right: 0;
    border-bottom: 1px solid black;
    padding-bottom: 8px;
  }
  .container {
    padding: 1.5rem 1rem;
  }
  .form-card {
    padding: 1.5rem;
  }
  .verticals-title {
    font-size: 1.6rem;
  }
}

/* misc */
button {
  background: none;
  border: none;
  font-family: inherit;
}
hr {
  border: none;
  border-top: 1px solid #e2e8f0;
}
a,
button {
  cursor: pointer;
}
