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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.text-red {
  color: #dc2626;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

header {
  padding: 0.75rem 0;
  width: 100%;
  transition: all 0.3s ease;
  background-color: transparent;
  z-index: 1000;
}

header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.logo-container {
  cursor: pointer;
}

.logo {
  height: 5rem;
  width: auto;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000000;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #dc2626;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #ffffff;
  padding: 0.5rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  display: block;
}

.hero {
  padding: 2.5rem 0 5rem;
  background: linear-gradient(to bottom, #e5e7eb 20%, #ffffff 80%);
  line-height: 1rem;
}

.hero h1 {
  font-size: 3rem;
  margin: 0 0.15rem;
  font-weight: 700;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.cta-button {
  background-color: #dc2626;
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.25rem;
  text-transform: uppercase;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #b91c1c;
}

.marketing-importance {
  padding: 4rem 0 2rem;
  background-color: #ffffff;
}

.marketing-importance .container {
  max-width: 768px;
}

.marketing-importance h3 {
  margin-bottom: 2rem;
}

.marketing-importance p {
  margin-bottom: 0.75rem;
}

.marketing-options {
  padding: 4rem 0 1.5rem;
  background-color: #ffffff;
}

.marketing-options h3 {
  margin-bottom: 2rem;
}

.container-wide {
  width: 100%;
  max-width: 100%;
  padding-left: clamp(1rem, 4vw, 3rem);
  padding-right: clamp(1rem, 4vw, 3rem);
}

@media (max-width: 767px) {
  .marketing-options .container-wide {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .marketing-options .options-grid {
    gap: 1.5rem;
  }

  .marketing-options .option-card {
    padding: 1.75rem 1.25rem;
  }
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.option-card {
  text-align: center;
  padding: 2rem;
}

.option-card .icon {
  width: 4rem;
  height: 4rem;
  color: #dc2626;
  margin: 0 auto 1.5rem;
}

.option-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.option-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.differentiation {
  padding: 1.5rem 0 4rem;
  background-color: #ffffff;
}

.differentiation h3 {
  margin-bottom: 2rem;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1152px;
  margin: 0 auto;
}

.diff-card {
  padding: 2rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  text-align: center;
}

.diff-card h4 {
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.diff-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact {
  background-color: #1f2937;
  padding: 4rem 0 1rem;
  color: white;
}

.contact h3 {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}

.contact .cta-button {
  margin-top: 1.75rem;
}

footer .container {
  max-width: 1400px; /* wider than the global 1200px container */
  padding-left: clamp(0.5rem, 1vw, 1rem);
  padding-right: clamp(1.5rem, 4vw, 4rem);
}

footer {
  padding: 2rem 0;
  background-color: #111827;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  width: 100%;
}

.footer-section li {
  margin-bottom: 0.25rem;
}

.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-logo {
  height: 4rem;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
}

.social-links a {
  color: #9ca3af;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #ffffff;
}

.social-links svg {
  width: 1.5rem;
  height: 1.5rem;
}

.form-section {
  background-color: #1f2937;
  padding: 3rem 0;
  min-height: calc(100vh - 200px);
}

.form-section .container {
  max-width: 768px;
}

.form-intro {
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}

.form-intro p {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  line-height: 1.5rem;
}

.form-intro .divider {
  width: 8rem;
  height: 1px;
  background-color: white;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid white;
  color: white;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  outline: none;
}

.form-input::placeholder {
  color: #d1d5db;
}

.form-input:focus {
  border-bottom-color: #dc2626;
}

.form-button {
  display: block;
  margin: 2rem auto 0;
  background-color: #dc2626;
  color: white;
  font-weight: 700;
  padding: 1rem 4rem;
  border-radius: 9999px;
  font-size: 1.25rem;
  text-transform: uppercase;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

.form-button:hover {
  background-color: #b91c1c;
}

.form-button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.privacy-note {
  text-align: center;
  padding-top: 1.5rem;
  color: #9ca3af;
}

.privacy-note p {
font-size: 0.75rem;
}

.privacy-note a {
  color: #b91c1c;
  text-decoration: none;
  margin-left: 0.25rem;
}

.privacy-note a:hover {
  color: #fca5a5;
}

.success-message {
  text-align: center;
  padding: 3rem 0;
  color: white;
}

.success-message h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.success-message p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.toast {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #10b981;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
}

.toast.show {
  opacity: 1;
}

.toast.error {
  background-color: #ef4444;
}

.page-content {
  padding: 3rem 0;
  background-color: #f9fafb;
}

.content-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.sidebar h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 0.5rem;
}

.sidebar a {
  display: block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  transition: background-color 0.2s;
  text-decoration: none;
  color: #1f2937;
}

.sidebar a:hover {
  background-color: #f3f4f6;
}

.sidebar a.active {
  background-color: #dc2626;
  color: white;
}

.main-content {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.main-content h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.main-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 3rem;
}

.main-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.main-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.main-content li {
  margin-bottom: 0.5rem;
}

.highlight-box {
  background-color: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.highlight-box p {
  margin: 0.1rem 0;
}

.not-found {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
  text-align: center;
  padding: 4rem 0;
}

.not-found h1 {
  font-size: 9rem;
  color: #dc2626;
  margin-bottom: 1rem;
}

.not-found h2 {
  font-size: 2.25rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.not-found p {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.home-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #dc2626;
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.2s;
}

.home-button:hover {
  background-color: #b91c1c;
  transform: scale(1.05);
}

.home-button svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  .hamburger {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero h1, .hero h2 {
    font-size: 3.75rem;
  }

  .options-grid {
    grid-template-columns: repeat(3, minmax(320px, 1fr));
    gap: 2.5rem;
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(2rem, 6vw, 6rem);
  row-gap: 2rem;
  align-items: start;
}

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-layout {
    flex-direction: row;
    gap: 2rem;
  }

  .sidebar {
    width: 25%;
    position: sticky;
    top: 6rem;
    align-self: flex-start;
  }

  .main-content {
    width: 75%;
  }
}

@media print {
  header, footer, .sidebar {
    display: none;
  }

  .main-content {
    box-shadow: none;
  }
}
