:root {
  --primary: #425cbb;
  --primary-dark: #263d8f;
  --text: #1f2937;
  --muted: #5f6673;
  --bg: #ffffff;
  --bg-soft: #f7f8fc;
  --border: #dbe1f0;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  z-index: 9999;
}

.top-bar {
  background: #0f172a;
  color: #f8fafc;
  font-size: 0.9rem;
}

.top-bar a {
  color: #c7d2fe;
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding: 0.65rem 0;
}

.top-bar p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand img {
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-weight: 500;
}

.menu-button {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 0.5rem 0.75rem;
  font-weight: 600;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  border-radius: 0;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  font-family: "Nunito", "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.86rem;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  text-decoration: none;
}

.btn-small {
  padding: 0.52rem 0.8rem;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

.hero {
  min-height: 62vh;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(9, 16, 43, 0.62), rgba(9, 16, 43, 0.62)),
    url("https://spaandlasercenter.com/wp-content/uploads/2019/02/Homepage-Banner-1-1.jpg")
      center / cover no-repeat;
}

.hero-content {
  padding: 5.5rem 0;
}

.kicker {
  margin: 0 0 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  color: #0f172a;
  font-family: "Nunito", "Roboto", Arial, sans-serif;
  line-height: 1.15;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.hero p {
  max-width: 700px;
  margin: 0.4rem 0 0;
  font-size: 1.03rem;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.section {
  padding: 4.4rem 0;
}

.section-alt {
  background: var(--bg-soft);
}

.section-form {
  background: #f0f4ff;
}

.section-head {
  text-align: center;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
}

.section-head p {
  margin: 0.4rem auto 0;
  max-width: 720px;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  border: 1px solid var(--border);
  background: #fff;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 1rem 1rem 1.2rem;
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.feature-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.feature-list li {
  margin-bottom: 0.35rem;
}

.testimonial {
  margin: 0 auto;
  max-width: 860px;
  padding: 1.4rem;
  border-left: 5px solid var(--primary);
  background: #fff;
  border: 1px solid var(--border);
}

.testimonial p {
  margin: 0;
  font-size: 1.02rem;
}

.testimonial cite {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
  font-style: normal;
}

.signup-form {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.2rem;
}

.grid {
  display: grid;
  gap: 0.9rem;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.65rem;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid #bcc7e6;
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 0.65rem 0.7rem;
}

textarea {
  resize: vertical;
}

fieldset {
  margin: 1rem 0;
  border: 1px solid var(--border);
  padding: 0.9rem;
}

legend {
  font-weight: 700;
  padding: 0 0.4rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  font-weight: 400;
}

.checkbox input {
  margin-top: 0.2rem;
  width: auto;
}

.fine-print {
  margin: 0.6rem 0 0.8rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.legal-links {
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-weight: 600;
}

.form-status {
  margin: 0.8rem 0 0;
  color: #0a5f2e;
  min-height: 1em;
}

.hidden-field {
  display: none;
}

.site-footer {
  background: #0f172a;
  color: #dbe2ef;
  padding-top: 2.4rem;
}

.site-footer h3 {
  color: #fff;
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.site-footer p {
  margin: 0 0 0.55rem;
}

.site-footer a {
  color: #bfcbff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 1.6rem;
  padding: 1.1rem 0;
  text-align: center;
}

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-main {
  flex: 1;
}

.legal-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.legal-content {
  padding: 2.2rem 0 3.2rem;
  max-width: 860px;
}

.legal-content h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.legal-content h2 {
  margin-top: 1.4rem;
  font-size: 1.4rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-callout {
  background: #eef2ff;
  border: 1px solid #cbd6ff;
  padding: 0.9rem;
}

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

  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-button {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 4%;
    left: 4%;
    display: none;
    background: #fff;
    border: 1px solid var(--border);
    padding: 0.8rem;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  .site-nav.open {
    display: flex;
  }

  .two-col,
  .cards {
    grid-template-columns: 1fr;
  }
}
