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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #f9fafb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: #0f172a;
  color: #f9fafb;
  padding: 3.5rem 1.25rem 4rem;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin: 0 0 0.75rem;
  color: #9ca3af;
}

h1 {
  font-size: 2.1rem;
  margin: 0 0 1rem;
}

.lede {
  font-size: 1rem;
  max-width: 44rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: #e5b000;
  color: #111827;
  border-color: #e5b000;
}

.btn.ghost {
  background: transparent;
  color: #f9fafb;
  border-color: #4b5563;
}

.after-hero-note {
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 0.5rem 0 0;
}

.section {
  padding: 2.75rem 1.25rem;
  background: #f9fafb;
}

.section.alt {
  background: #ffffff;
}

.grid-2 {
  display: grid;
  gap: 1.75rem;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 3fr 2fr;
  }
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

h2 {
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  margin-bottom: 1rem;
}

.steps h3 {
  margin-bottom: 0.25rem;
}

.card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  align-self: flex-start;
}

.bullets {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.25rem 0 0;
}

.bullets li + li {
  margin-top: 0.35rem;
}

.form-card {
  font-size: 0.95rem;
}

.form-placeholder,
.calendar-embed {
  margin-top: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px dashed #d1d5db;
  background: #f3f4f6;
  font-size: 0.9rem;
}

.small {
  font-size: 0.85rem;
  color: #4b5563;
}

.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.75rem 1.25rem 2rem;
}

.footer-content {
  text-align: center;
}

.footer-brand {
  font-size: 0.95rem;
  font-weight: 500;
  color: #e5e7eb;
  margin: 0 0 0.35rem;
}

.footer-note {
  font-size: 0.8rem;
  max-width: 42rem;
  margin: 0 auto 0.75rem;
}

.footer-links {
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  align-items: center;
}

.footer-links a {
  color: #e5b000;
}


.sla-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  margin-top: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5b000;
  background: linear-gradient(135deg, #111827, #020617);
  color: #f9fafb;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.sla-badge-main {
  font-weight: 600;
  font-size: 0.75rem;
}

.sla-badge-sub {
  font-size: 0.65rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .sla-badge {
    margin-left: 0;
  }
}



/* TIDYCAL RESPONSIVE BEHAVIOR */
@media (min-width: 768px) {
  .tidycal-desktop { display:block !important; }
  .tidycal-mobile { display:none !important; }
}
@media (max-width: 767px) {
  .tidycal-desktop { display:none !important; }
  .tidycal-mobile { display:inline-flex !important; }
}
