:root {
  --primary: #e93d3d;
  --secondary: #188bf6;
  --white: #ffffff;
  --bg: #fcfcfc;
  --text: #000000;
  --muted: #4f4f51;
  --headline: "Montserrat", sans-serif;
  --body: "Lato", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--secondary);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: 48px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-family: var(--headline);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
}

.hero {
  text-align: center;
  padding: 2.5rem 0 1.5rem;
}

.hero h1 {
  font-family: var(--headline);
  color: var(--primary);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.1;
  margin: 0.25rem 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

.hero h2 {
  font-family: var(--headline);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin: 0.5rem 0 1.5rem;
  font-weight: 600;
}

.video-wrap {
  max-width: 820px;
  margin: 0 auto 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  background: #000;
}

.video-wrap video,
.video-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white) !important;
  text-decoration: none;
  font-family: var(--headline);
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.95rem 2.25rem;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(233, 61, 61, 0.35);
}

.section {
  padding: 2rem 0;
}

.section-divider {
  border: 0;
  border-top: 2px solid #ddd;
  margin: 2rem auto;
  max-width: 700px;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto;
  max-width: 700px;
  text-align: left;
}

.bullet-list li {
  padding: 0.35rem 0;
  font-size: 1.05rem;
}

.bullet-list li::before {
  content: "✓ ";
  color: var(--primary);
  font-weight: 700;
}

.stat-block {
  text-align: center;
  padding: 1rem 0 2rem;
}

.stat-block h2 {
  font-family: var(--headline);
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

.stat-number {
  font-family: var(--headline);
  color: var(--primary);
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin: 0.5rem 0;
  line-height: 1;
}

.cta-center {
  text-align: center;
  padding: 1rem 0 3rem;
}

.page-title {
  font-family: var(--headline);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin: 2rem 0 1rem;
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 2rem;
}

.content-block h3 {
  font-family: var(--headline);
  margin-top: 2rem;
}

.content-block ul {
  padding-left: 1.25rem;
}

.content-block li {
  margin-bottom: 0.5rem;
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.legal-page h1,
.legal-page h2 {
  font-family: var(--headline);
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.legal-page ul {
  padding-left: 1.25rem;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto 3rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font: inherit;
}

.checkbox-group {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 1rem 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.checkbox-group input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid #e8e8e8;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.site-footer p {
  margin: 0.35rem 0;
  color: var(--muted);
}

@media (max-width: 640px) {
  .site-nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .brand img {
    height: 40px;
  }

  .contact-form {
    padding: 1.25rem;
  }
}
