:root {
  --primary-blue: #1877f2;
  --primary-blue-hover: #166fe5;
  --primary-blue-light: #e7f3ff;
  --text-primary: #1c1e21;
  --text-secondary: #65676b;
  --text-muted: #8a8d91;
  --border-light: #dadde1;
  --background-light: #f8f9fa;
  --success-green: #42b883;
  --success-green-hover: #369870;
}

.text-primary {
  color: var(--text-primary);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-muted);
}

.bg-primary {
  background-color: var(--primary-blue);
}

.bg-primary-light {
  background-color: var(--primary-blue-light);
}

.bg-light {
  background-color: var(--background-light);
}

.border-light {
  border-color: var(--border-light);
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--primary-blue-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
  color: white !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
}

h1,
h2,
h3 {
  font-weight: 500 !important;
}

h4,
h5,
h6 {
  font-weight: 300;
}

#testimonials,
#pricing {
  /*	display: none;*/
}


.testimonial-images {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

ul.checkmark li {
  margin-bottom: 1em;
  list-style-type: none;
  padding: 0.25em 0 0 2.5em;
  position: relative;
}

ul.checkmark li:before {
  content: " ";
  display: block;
  border: solid 0.8em #fff;
  border-radius: 0.8em;
  height: 0;
  width: 0;
  position: absolute;
  left: 0.5em;
  top: 40%;
  margin-top: -0.5em;
}

ul.checkmark li:after {
  content: " ";
  display: block;
  width: 0.4em;
  height: 0.9em;
  border: solid #2563eb;
  border-width: 0 0.2em 0.2em 0;
  position: absolute;
  left: .75em;
  top: 30%;
  margin-top: -0.2em;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

video {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.video-container {
  position: relative;
}

.play-button {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1;
}

.play-button:hover {
  background-color: #0056b3;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--primary-blue-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
  color: white !important;
}