/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7fb;
  color: #14213d;
  line-height: 1.5;
}

/* Layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Header */
header {
  padding: 1rem 0 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: #14213d;
}

.logo span {
  color: #fca311;
}

header nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #4b5563;
  font-size: 0.95rem;
}

header nav a:hover {
  color: #111827;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 0 3rem;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero-copy h1 {
  font-size: clamp(2rem, 2.6vw + 1rem, 2.8rem);
  margin-bottom: 1rem;
}

.hero-copy h1 span {
  color: #fca311;
}

.hero-copy p {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 1.25rem;
}

.hero-bullets {
  margin: 1rem 0 1.5rem;
  list-style: none;
}

.hero-bullets li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  font-size: 0.98rem;
}

.hero-bullets li::before {
  content: "✓";
  color: #16a34a;
  margin-right: 0.4rem;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
}

.btn-primary {
  background: #fca311;
  color: #111827;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background: #f59e0b;
}

.btn-secondary {
  background: transparent;
  color: #111827;
  border: 1px solid #d1d5db;
  margin-left: 0.75rem;
}

.btn-secondary:hover {
  background: #e5e7eb;
}

/* Card / form */
.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.75rem;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 0.2rem;
}

input,
textarea,
select {
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
  outline: none;
}

textarea {
  min-height: 70px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #fca311;
  box-shadow: 0 0 0 1px rgba(252, 163, 17, 0.2);
}

.helper {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Sections */
.section {
  padding: 2rem 0;
}

.section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.section p {
  color: #4b5563;
  max-width: 680px;
}

.section-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.section-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.section-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.section-card p {
  font-size: 0.88rem;
  color: #6b7280;
}

/* Footer */
footer {
  border-top: 1px solid #e5e7eb;
  padding: 1rem 0;
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
  margin-top: auto;
}
