:root {
  --bg: #050816;
  --bg-soft: #0b1020;
  --bg-softer: #111827;
  --accent: #22c55e;
  --accent-soft: rgba(34, 197, 94, 0.16);
  --accent-strong: rgba(34, 197, 94, 0.9);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --shadow-soft: 0 24px 80px rgba(15, 23, 42, 0.85);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition: 180ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  background: radial-gradient(circle at top left, #1d283a 0, #050816 42%, #020617 100%);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  padding: 96px 16px 72px;
}

@media (min-width: 768px) {
  main {
    padding: 112px 32px 88px;
  }
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.nav__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav__brand span {
  color: var(--accent);
}

.nav__badge {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.2), transparent 50%);
  font-size: 0.75rem;
  color: var(--accent);
}

.hero {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
    gap: 40px;
  }
}

.hero__content h1 {
  font-size: clamp(2.2rem, 3vw + 1.6rem, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.hero__subtitle {
  max-width: 32rem;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 16px;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero__bullets li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-right: 8px;
  background: var(--accent-strong);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #022c22;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 14px 40px rgba(34, 197, 94, 0.45);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.hero__cta:hover {
  transform: translateY(-1px) translateZ(0);
  box-shadow: 0 18px 55px rgba(34, 197, 94, 0.55);
}

.hero__cta:active {
  transform: translateY(0);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.hero__cta-secondary {
  margin-top: 16px;
  width: auto;
  padding: 10px 14px;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .hero__cta-secondary {
    width: 100%;
    margin-bottom: 22px;
  }
}

.hero__note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero__card {
  border-radius: 24px;
  padding: 18px 18px 18px;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-soft);
  transform: translateY(4px);
}

.hero__form-card {
  border-radius: 24px;
  padding: 18px 18px 20px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
  .hero__form-card {
    padding: 16px 14px 18px;
  }
  
  .btn {
    width: 100%;
  }
}

.hero__card-header {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero__card-steps {
  list-style: decimal;
  padding-left: 18px;
  margin: 0 0 12px;
  font-size: 0.92rem;
  color: var(--text-main);
}

.hero__card-steps li + li {
  margin-top: 4px;
}

.hero__card-footer {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.section {
  margin-top: 48px;
}

.section--light {
  margin-top: 56px;
}

.section__inner {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.92);
  border-radius: var(--radius-lg);
  padding: 20px 18px 22px;
  border: 1px solid var(--border-subtle);
}

.section--light .section__inner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(8, 47, 35, 0.96));
}

/* Removed standalone section styles */

.section h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.section__text {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Next Steps Card Styles */
.next-steps-card {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.next-steps-title {
  font-size: 1.1rem;
  margin: 0 0 16px;
  color: var(--accent);
  text-align: center;
}

.next-steps-list {
  padding-left: 25px;
  margin: 0 0 18px;
  font-size: 1rem;
  counter-reset: steps-counter;
}

.next-steps-list li {
  margin-bottom: 12px;
  padding-left: 5px;
  position: relative;
}

.next-steps-list li::marker {
  color: var(--accent);
  font-weight: bold;
}

.next-steps-footer {
  font-size: 0.92rem;
  color: var(--text-muted);
  text-align: center;
  margin: 20px 0 0;
  font-style: italic;
}

.section__columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 768px) {
  .section__inner {
    padding: 24px 24px 26px;
  }

  .section__columns {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.section__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.2), transparent 55%);
}

.form {
  margin-top: 6px;
}

.form-title {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .form__row {
    flex-direction: row;
  }
}

.form__field {
  flex: 1;
}

.form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.form input,
.form select {
  width: 100%;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form input:focus,
.form select:focus {
  border-color: rgba(34, 197, 94, 0.8);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.6);
  background: #020617;
}

.input--highlight {
  border-color: rgba(34, 197, 94, 0.9) !important;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.9) !important;
}

.form__note {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form__error {
  min-height: 14px;
  margin: 4px 0 0;
  font-size: 0.72rem;
  color: #fca5a5;
}

.form__success {
  margin-top: 8px;
  font-size: 0.82rem;
  color: #bbf7d0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn--primary {
  margin-top: 12px;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #022c22;
  box-shadow: 0 14px 45px rgba(34, 197, 94, 0.5);
}

.btn--primary:hover {
  transform: translateY(-1px) translateZ(0);
  box-shadow: 0 18px 58px rgba(34, 197, 94, 0.6);
}

.btn--secondary {
  width: 100%;
  background: rgba(15, 23, 42, 0.98);
  color: var(--text-main);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn--secondary:hover {
  background: #020617;
  border-color: rgba(34, 197, 94, 0.8);
}

.footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  margin-top: 56px;
  padding: 16px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 1));
}

.footer__inner {
  max-width: 1040px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__brand {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.footer__legal {
  margin: 0;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal--visible {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(18px);
}

.modal__content {
  position: relative;
  max-width: 420px;
  width: 92%;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.22), rgba(15, 23, 42, 0.98));
  border-radius: 22px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
  animation: modal-pop 220ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@media (min-width: 640px) {
  .modal__content {
    padding: 22px 20px 20px;
  }
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.modal__text {
  margin: 8px 0 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.modal__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
}

.modal__bullets li {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
}

@keyframes modal-pop {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

::selection {
  background: rgba(34, 197, 94, 0.35);
}
