/* Generated by Offorigin - Site Builder */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #0e0e10;
  min-height: 100vh;
}

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

button {
  font-family: inherit;
}

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

/* Slideshow styles */
[data-slideshow] {
  position: relative;
  overflow: hidden;
}

[data-slideshow] [class*="-track"] {
  display: flex;
  transition: transform 0.5s ease;
}

[data-slideshow] [class*="-slide"] {
  flex-shrink: 0;
  width: 100%;
}

[data-slideshow] [class*="-arrow"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
  color: #1f2937;
}

[data-slideshow] [class*="-arrow"]:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

[data-slideshow] [class*="-arrow-prev"] {
  left: 16px;
}

[data-slideshow] [class*="-arrow-next"] {
  right: 16px;
}

[data-slideshow] [class*="-dots"] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

[data-slideshow] [class*="-dot"] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

[data-slideshow] [class*="-dot"]:hover,
[data-slideshow] [class*="-dot"].active {
  background: #fff;
}

[data-slideshow] [class*="-dot"].active {
  transform: scale(1.2);
}

/* Carousel styles */
[data-carousel] {
  position: relative;
}

[data-carousel] [class*="-container"] {
  overflow: hidden;
}

[data-carousel] [class*="-track"] {
  display: flex;
  transition: transform 0.4s ease;
}

[data-carousel] [class*="-item"] {
  flex-shrink: 0;
}

[data-carousel] [class*="-arrow"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
  color: #1f2937;
}

[data-carousel] [class*="-arrow"]:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

[data-carousel] [class*="-arrow-prev"] {
  left: 12px;
}

[data-carousel] [class*="-arrow-next"] {
  right: 12px;
}

[data-carousel] [class*="-dots"] {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

[data-carousel] [class*="-dot"] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

[data-carousel] [class*="-dot"]:hover {
  background: #9ca3af;
}

[data-carousel] [class*="-dot"].active {
  background: #3b82f6;
}

/* Countdown Timer styles */
[data-countdown] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

[data-countdown] [class*="-unit"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

[data-countdown][data-style="boxes"] [class*="-unit"] {
  background: #1a1a1a;
  padding: 12px 16px;
  border-radius: 8px;
  min-width: 60px;
}

[data-countdown] [class*="-number"] {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

[data-countdown][data-style="minimal"] [class*="-number"] {
  font-size: 24px;
}

[data-countdown] [class*="-label"] {
  font-size: 11px;
  font-weight: 500;
  text-transform: lowercase;
  opacity: 0.7;
}

[data-countdown][data-label-position="none"] [class*="-label"] {
  display: none;
}

[data-countdown] [class*="-separator"] {
  font-size: 24px;
  font-weight: 700;
  opacity: 0.5;
}

[data-countdown] [class*="-expired"] {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 640px) {
  [data-countdown] {
    gap: 8px;
  }
  [data-countdown] [class*="-number"] {
    font-size: 24px;
  }
  [data-countdown][data-style="boxes"] [class*="-unit"] {
    padding: 8px 12px;
    min-width: 50px;
  }
}

/* Entrance animations */
@keyframes siter-fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes siter-slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes siter-slideDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes siter-slideLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes siter-slideRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes siter-scaleUp { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

[data-animate] { opacity: 0; }
[data-animate].animated { animation-fill-mode: both; }


.navbar-saas-nav {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  top: 0;
  z-index: 50;
  display: flex;
  padding: 16px 48px;
  position: sticky;
  align-items: center;
  border-bottom: 1px solid #2a2a2e;
  backdrop-filter: blur(12px);
  justify-content: space-between;
  background-color: #0e0e10;
}

.text-saas-nav-logo-wrap {
  flex: 1 1 auto;
}

.text-saas-nav-logo {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #f5f5f5;
}

.container-saas-nav-links {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  gap: 32px;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}

.link-saas-nav-link-1-wrap {
  flex: 1 1 auto;
}

.link-saas-nav-link-1 {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  color: #8b8b8f;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}

.link-saas-nav-link-2-wrap {
  flex: 1 1 auto;
}

.link-saas-nav-link-2 {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  color: #8b8b8f;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}

.link-saas-nav-link-4-wrap {
  margin-right: 40px;
  flex: 1 1 auto;
}

.link-saas-nav-link-4 {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  color: #8b8b8f;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}

.button-saas-nav-cta-wrap {
  flex: 1 1 auto;
}

.button-saas-nav-cta {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  color: #0e0e10;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding-top: 10px;
  padding-left: 18px;
  border-radius: 9999px;
  padding-right: 20px;
  padding-bottom: 10px;
  background-color: #f5f5f5;
  display: inline-block;
}

.section-saas-hero {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  padding-top: 86px;
  padding-left: 24px;
  padding-right: 24px;
  flex-direction: column;
  padding-bottom: 80px;
  justify-content: center;
  background-color: #0e0e10;
}

.container-saas-hero-content {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  gap: 24px;
  width: 100%;
  display: flex;
  max-width: 1200px;
  text-align: center;
  align-items: center;
  margin-left: auto;
  padding-top: 20px;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  flex-direction: column;
  padding-bottom: 0;
  flex: 0 0 auto;
}

.heading-saas-hero-title-wrap {
  max-width: 800px;
  flex: 1 1 auto;
}

.heading-saas-hero-title {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #f5f5f5;
  align-self: center;
  letter-spacing: -0.02em;
}

.paragraph-saas-hero-subtitle-wrap {
  max-width: 560px;
  flex: 1 1 auto;
}

.paragraph-saas-hero-subtitle {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #8b8b8f;
  align-self: center;
}

.image-16c05ec4-6304-4909-81d8-2f14d60a2538-wrap {
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  overflow: hidden;
}

.image-16c05ec4-6304-4909-81d8-2f14d60a2538 {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.container-saas-hero-buttons {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
  justify-content: center;
  flex: 1 1 auto;
}

.button-saas-hero-btn-1-wrap {
  flex: 1 1 auto;
}

.button-saas-hero-btn-1 {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  color: #0e0e10;
  border: none;
  cursor: pointer;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 9999px;
  background-color: #f5f5f5;
  display: inline-block;
}

.button-saas-hero-btn-2-wrap {
  flex: 1 1 auto;
}

.button-saas-hero-btn-2 {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  color: #f5f5f5;
  border: 1px solid #2a2a2e;
  cursor: pointer;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 9999px;
  background-color: transparent;
  display: inline-block;
}

.section-saas-features {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 10px;
  background-color: #0e0e10;
}

.container-saas-features-header {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  gap: 16px;
  width: 100%;
  display: flex;
  max-width: 1200px;
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
  flex-direction: column;
  flex: 0 0 auto;
}

.text-saas-features-tag-wrap {
  flex: 1 1 auto;
}

.text-saas-features-tag {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #7c5cff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.heading-saas-features-title-wrap {
  max-width: 600px;
  flex: 1 1 auto;
}

.heading-saas-features-title {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #f5f5f5;
  align-self: center;
  white-space: pre-line;
}

.section-saas-info {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 100px;
  background-color: #0e0e10;
}

.container-saas-info-grid {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  gap: 24px;
  display: grid;
  max-width: 1200px;
  align-items: start;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(3, 1fr);
  flex: 1 1 auto;
}

.card-saas-info-card-1 {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  border: 1px solid #2a2a2e;
  display: flex;
  padding: 32px;
  border-radius: 16px;
  flex-direction: column;
  background-color: #18181b;
  width: 100%;
  justify-self: stretch;
}

.text-saas-info-1-icon-wrap {
  width: fit-content;
  margin-bottom: 20px;
  flex: 0 0 auto;
}

.text-saas-info-1-icon {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #444444;
  padding: 12px;
  border-radius: 12px;
  background-color: #27272a;
}

.heading-saas-info-1-title-wrap {
  margin-bottom: 8px;
  flex: 1 1 auto;
}

.heading-saas-info-1-title {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #f5f5f5;
}

.paragraph-saas-info-1-desc-wrap {
  margin-bottom: 16px;
  flex: 1 1 auto;
}

.paragraph-saas-info-1-desc {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #8b8b8f;
}

.link-saas-info-1-link-wrap {
  flex: 1 1 auto;
}

.link-saas-info-1-link {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  color: #7c5cff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.card-saas-info-card-2 {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  border: 1px solid #2a2a2e;
  display: flex;
  padding: 32px;
  border-radius: 16px;
  flex-direction: column;
  background-color: #18181b;
  width: 100%;
  justify-self: stretch;
}

.text-saas-info-2-icon-wrap {
  width: fit-content;
  margin-bottom: 20px;
  flex: 0 0 auto;
}

.text-saas-info-2-icon {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #444444;
  padding: 12px;
  border-radius: 12px;
  background-color: #27272a;
}

.heading-saas-info-2-title-wrap {
  margin-bottom: 8px;
  flex: 1 1 auto;
}

.heading-saas-info-2-title {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #f5f5f5;
}

.paragraph-saas-info-2-desc-wrap {
  margin-bottom: 16px;
  flex: 1 1 auto;
}

.paragraph-saas-info-2-desc {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #8b8b8f;
}

.link-saas-info-2-link-wrap {
  flex: 1 1 auto;
}

.link-saas-info-2-link {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  color: #7c5cff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.card-saas-info-card-3 {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  border: 1px solid #2a2a2e;
  display: flex;
  padding: 32px;
  border-radius: 16px;
  flex-direction: column;
  background-color: #18181b;
  width: 100%;
  justify-self: stretch;
}

.text-saas-info-3-icon-wrap {
  width: fit-content;
  margin-bottom: 20px;
  flex: 0 0 auto;
}

.text-saas-info-3-icon {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #444444;
  padding: 12px;
  border-radius: 12px;
  background-color: #27272a;
}

.heading-saas-info-3-title-wrap {
  margin-bottom: 8px;
  flex: 1 1 auto;
}

.heading-saas-info-3-title {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #f5f5f5;
}

.paragraph-saas-info-3-desc-wrap {
  margin-bottom: 16px;
  flex: 1 1 auto;
}

.paragraph-saas-info-3-desc {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #8b8b8f;
}

.link-saas-info-3-link-wrap {
  flex: 1 1 auto;
}

.link-saas-info-3-link {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  color: #7c5cff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.section-saas-testimonial {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
  background-color: #0e0e10;
}

.card-saas-testimonial-card {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  border: 1px solid #2a2a2e;
  margin: 0 auto;
  display: grid;
  max-width: 1200px;
  overflow: hidden;
  align-items: start;
  border-radius: 16px;
  background-color: #18181b;
  grid-template-columns: 1fr 1fr;
  flex: 1 1 auto;
}

.image-saas-testimonial-image-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-saas-testimonial-image {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  min-height: 400px;
  object-fit: cover;
  background-color: #27272a;
  justify-self: center;
  width: 100%;
  height: 100%;
}

.container-saas-testimonial-content {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  gap: 24px;
  display: flex;
  padding: 48px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  justify-self: stretch;
}

.text-saas-testimonial-tag-wrap {
  flex: 1 1 auto;
}

.text-saas-testimonial-tag {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #7c5cff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.paragraph-saas-testimonial-quote-wrap {
  flex: 1 1 auto;
}

.paragraph-saas-testimonial-quote {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #f5f5f5;
}

.text-saas-testimonial-author-wrap {
  flex: 1 1 auto;
}

.text-saas-testimonial-author {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #f5f5f5;
}

.section-309fd032-f80b-4fe6-96f4-5a6fc3ff3bdc {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-top: 46px;
  padding-left: 24px;
  padding-right: 24px;
  flex-direction: column;
  padding-bottom: 80px;
  background-color: #0e0e10;
}

.heading-48a4b9aa-b670-46b7-9ea3-467669bf2df7-wrap {
  text-align: center;
  margin-bottom: 8px;
  flex: 1 1 auto;
}

.heading-48a4b9aa-b670-46b7-9ea3-467669bf2df7 {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}

.paragraph-64a18129-fad2-4c67-8bc4-bbcebf08d00e-wrap {
  text-align: center;
  margin-bottom: 48px;
  flex: 1 1 auto;
}

.paragraph-64a18129-fad2-4c67-8bc4-bbcebf08d00e {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #9ca3af;
}

.section-saas-cta {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
  background-color: #0e0e10;
}

.container-saas-cta-container {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  gap: 32px;
  border: 1px solid #2a2a2e;
  display: flex;
  padding: 80px 48px;
  max-width: 1200px;
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 24px;
  flex-direction: column;
  background-color: #18181b;
  flex: 1 1 auto;
}

.heading-saas-cta-title-wrap {
  max-width: 600px;
  flex: 1 1 auto;
}

.heading-saas-cta-title {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #f5f5f5;
  align-self: center;
}

.container-saas-cta-buttons {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  gap: 16px;
  display: flex;
  flex: 1 1 auto;
}

.button-saas-cta-btn-1-wrap {
  flex: 1 1 auto;
}

.button-saas-cta-btn-1 {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  color: #ffffff;
  border: none;
  cursor: pointer;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 9999px;
  background-color: #7c5cff;
  display: inline-block;
}

.button-saas-cta-btn-2-wrap {
  flex: 1 1 auto;
}

.button-saas-cta-btn-2 {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  color: #f5f5f5;
  border: 1px solid #2a2a2e;
  cursor: pointer;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 9999px;
  background-color: transparent;
  display: inline-block;
}

.footer-saas-footer {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 56px 48px 24px;
  border-top: 1px solid #2a2a2e;
  text-align: center;
  align-items: center;
  flex-direction: column;
  background-color: #0e0e10;
}

.container-saas-footer-content {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  gap: 40px;
  display: flex;
  max-width: 1200px;
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(4, 1fr);
  flex: 1 1 auto;
}

.container-saas-footer-brand {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  gap: 12px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.text-saas-footer-logo-wrap {
  flex: 1 1 auto;
}

.text-saas-footer-logo {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #f5f5f5;
}

.paragraph-saas-footer-tagline-wrap {
  flex: 1 1 auto;
}

.paragraph-saas-footer-tagline {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #8b8b8f;
}

.container-saas-footer-bottom {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 1200px;
  border-top: 1px solid #2a2a2e;
  margin-top: 40px;
  margin-left: auto;
  padding-top: 24px;
  margin-right: auto;
  flex: 1 1 auto;
}

.text-saas-footer-copyright-wrap {
  flex: 1 1 auto;
}

.text-saas-footer-copyright {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #8b8b8f;
}


/* Tablet styles */
@media (max-width: 1024px) {
  .heading-saas-hero-title-wrap {
    max-width: 800px;
    flex: 1 1 auto;
  }
  .heading-saas-hero-title {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #f5f5f5;
    align-self: center;
    letter-spacing: -0.02em;
  }
  .container-saas-info-grid {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    gap: 24px;
    display: grid;
    max-width: 1200px;
    align-items: start;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, 1fr);
    flex: 1 1 auto;
  }
  .container-saas-footer-content {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    gap: 40px;
    display: flex;
    max-width: 1200px;
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, 1fr);
    flex: 1 1 auto;
  }
}


/* Mobile styles */
@media (max-width: 640px) {
  .navbar-saas-nav {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    top: 0;
    z-index: 50;
    display: flex;
    padding: 16px 20px;
    position: sticky;
    align-items: center;
    border-bottom: 1px solid #2a2a2e;
    backdrop-filter: blur(12px);
    justify-content: space-between;
    background-color: #0e0e10;
  }
  .text-saas-nav-logo-wrap {
    flex: 1 1 auto;
  }
  .text-saas-nav-logo {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: #f5f5f5;
  }
  .container-saas-nav-links {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    gap: 32px;
    display: none;
    align-items: center;
    flex: 1 1 auto;
  }
  .link-saas-nav-link-1-wrap {
    flex: 1 1 auto;
  }
  .link-saas-nav-link-1 {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    color: #8b8b8f;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
  }
  .link-saas-nav-link-2-wrap {
    flex: 1 1 auto;
  }
  .link-saas-nav-link-2 {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    color: #8b8b8f;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
  }
  .link-saas-nav-link-4-wrap {
    margin-right: 40px;
    flex: 1 1 auto;
  }
  .link-saas-nav-link-4 {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    color: #8b8b8f;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
  }
  .button-saas-nav-cta-wrap {
    flex: 1 1 auto;
  }
  .button-saas-nav-cta {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    color: #0e0e10;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding-top: 10px;
    padding-left: 18px;
    border-radius: 9999px;
    padding-right: 20px;
    padding-bottom: 10px;
    background-color: #f5f5f5;
  }
  .section-saas-hero {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
    padding-bottom: 60px;
    justify-content: center;
    background-color: #0e0e10;
  }
  .container-saas-hero-content {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    gap: 24px;
    width: 100%;
    display: flex;
    max-width: 1200px;
    text-align: center;
    align-items: center;
    margin-left: auto;
    padding-top: 20px;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    flex-direction: column;
    padding-bottom: 0;
    flex: 0 0 auto;
  }
  .heading-saas-hero-title-wrap {
    max-width: 800px;
    flex: 1 1 auto;
  }
  .heading-saas-hero-title {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    color: #f5f5f5;
    align-self: center;
    letter-spacing: -0.02em;
  }
  .paragraph-saas-hero-subtitle-wrap {
    max-width: 560px;
    flex: 1 1 auto;
  }
  .paragraph-saas-hero-subtitle {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #8b8b8f;
    align-self: center;
  }
  .image-16c05ec4-6304-4909-81d8-2f14d60a2538-wrap {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
  }
  .image-16c05ec4-6304-4909-81d8-2f14d60a2538 {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    object-fit: cover;
    border-radius: 8px;
  }
  .container-saas-hero-buttons {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    gap: 16px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
    justify-content: center;
    width: 100%;
    align-items: center;
    flex-direction: column;
    flex: 0 0 auto;
  }
  .button-saas-hero-btn-1-wrap {
    flex: 1 1 auto;
  }
  .button-saas-hero-btn-1 {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    color: #0e0e10;
    border: none;
    cursor: pointer;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 9999px;
    background-color: #f5f5f5;
  }
  .button-saas-hero-btn-2-wrap {
    flex: 1 1 auto;
  }
  .button-saas-hero-btn-2 {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    color: #f5f5f5;
    border: 1px solid #2a2a2e;
    cursor: pointer;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 9999px;
    background-color: transparent;
  }
  .section-saas-features {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
    padding-left: 48px;
    padding-right: 48px;
    padding-bottom: 10px;
    background-color: #0e0e10;
    padding: 60px 20px;
  }
  .container-saas-features-header {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    gap: 16px;
    width: 100%;
    display: flex;
    max-width: 1200px;
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
    flex-direction: column;
    flex: 0 0 auto;
  }
  .text-saas-features-tag-wrap {
    flex: 1 1 auto;
  }
  .text-saas-features-tag {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #7c5cff;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .heading-saas-features-title-wrap {
    max-width: 600px;
    flex: 1 1 auto;
  }
  .heading-saas-features-title {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #f5f5f5;
    align-self: center;
    white-space: pre-line;
  }
  .section-saas-info {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
    padding-left: 48px;
    padding-right: 48px;
    padding-bottom: 100px;
    background-color: #0e0e10;
    padding: 60px 20px;
  }
  .container-saas-info-grid {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    gap: 24px;
    display: grid;
    max-width: 1200px;
    align-items: start;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    flex: 1 1 auto;
  }
  .card-saas-info-card-1 {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    border: 1px solid #2a2a2e;
    display: flex;
    padding: 32px;
    border-radius: 16px;
    flex-direction: column;
    background-color: #18181b;
    width: 100%;
    justify-self: stretch;
  }
  .text-saas-info-1-icon-wrap {
    width: fit-content;
    margin-bottom: 20px;
    flex: 0 0 auto;
  }
  .text-saas-info-1-icon {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #444444;
    padding: 12px;
    border-radius: 12px;
    background-color: #27272a;
  }
  .heading-saas-info-1-title-wrap {
    margin-bottom: 8px;
    flex: 1 1 auto;
  }
  .heading-saas-info-1-title {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #f5f5f5;
  }
  .paragraph-saas-info-1-desc-wrap {
    margin-bottom: 16px;
    flex: 1 1 auto;
  }
  .paragraph-saas-info-1-desc {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #8b8b8f;
  }
  .link-saas-info-1-link-wrap {
    flex: 1 1 auto;
  }
  .link-saas-info-1-link {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    color: #7c5cff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
  }
  .card-saas-info-card-2 {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    border: 1px solid #2a2a2e;
    display: flex;
    padding: 32px;
    border-radius: 16px;
    flex-direction: column;
    background-color: #18181b;
    width: 100%;
    justify-self: stretch;
  }
  .text-saas-info-2-icon-wrap {
    width: fit-content;
    margin-bottom: 20px;
    flex: 0 0 auto;
  }
  .text-saas-info-2-icon {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #444444;
    padding: 12px;
    border-radius: 12px;
    background-color: #27272a;
  }
  .heading-saas-info-2-title-wrap {
    margin-bottom: 8px;
    flex: 1 1 auto;
  }
  .heading-saas-info-2-title {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #f5f5f5;
  }
  .paragraph-saas-info-2-desc-wrap {
    margin-bottom: 16px;
    flex: 1 1 auto;
  }
  .paragraph-saas-info-2-desc {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #8b8b8f;
  }
  .link-saas-info-2-link-wrap {
    flex: 1 1 auto;
  }
  .link-saas-info-2-link {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    color: #7c5cff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
  }
  .card-saas-info-card-3 {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    border: 1px solid #2a2a2e;
    display: flex;
    padding: 32px;
    border-radius: 16px;
    flex-direction: column;
    background-color: #18181b;
    width: 100%;
    justify-self: stretch;
  }
  .text-saas-info-3-icon-wrap {
    width: fit-content;
    margin-bottom: 20px;
    flex: 0 0 auto;
  }
  .text-saas-info-3-icon {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #444444;
    padding: 12px;
    border-radius: 12px;
    background-color: #27272a;
  }
  .heading-saas-info-3-title-wrap {
    margin-bottom: 8px;
    flex: 1 1 auto;
  }
  .heading-saas-info-3-title {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #f5f5f5;
  }
  .paragraph-saas-info-3-desc-wrap {
    margin-bottom: 16px;
    flex: 1 1 auto;
  }
  .paragraph-saas-info-3-desc {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #8b8b8f;
  }
  .link-saas-info-3-link-wrap {
    flex: 1 1 auto;
  }
  .link-saas-info-3-link {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    color: #7c5cff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
  }
  .section-saas-testimonial {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #0e0e10;
  }
  .card-saas-testimonial-card {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    border: 1px solid #2a2a2e;
    margin: 0 auto;
    display: grid;
    max-width: 1200px;
    overflow: hidden;
    align-items: start;
    border-radius: 16px;
    background-color: #18181b;
    grid-template-columns: 1fr;
    flex: 1 1 auto;
  }
  .image-saas-testimonial-image-wrap {
    width: 100%;
    height: 100%;
  }
  .image-saas-testimonial-image {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    min-height: 300px;
    object-fit: cover;
    background-color: #27272a;
    justify-self: center;
  }
  .container-saas-testimonial-content {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    gap: 24px;
    display: flex;
    padding: 32px;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    justify-self: stretch;
  }
  .text-saas-testimonial-tag-wrap {
    flex: 1 1 auto;
  }
  .text-saas-testimonial-tag {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #7c5cff;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .paragraph-saas-testimonial-quote-wrap {
    flex: 1 1 auto;
  }
  .paragraph-saas-testimonial-quote {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #f5f5f5;
  }
  .text-saas-testimonial-author-wrap {
    flex: 1 1 auto;
  }
  .text-saas-testimonial-author {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #f5f5f5;
  }
  .section-309fd032-f80b-4fe6-96f4-5a6fc3ff3bdc {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding-top: 46px;
    padding-left: 24px;
    padding-right: 24px;
    flex-direction: column;
    padding-bottom: 80px;
    background-color: #0e0e10;
    padding: 60px 20px;
  }
  .heading-48a4b9aa-b670-46b7-9ea3-467669bf2df7-wrap {
    text-align: center;
    margin-bottom: 8px;
    flex: 1 1 auto;
  }
  .heading-48a4b9aa-b670-46b7-9ea3-467669bf2df7 {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
  }
  .paragraph-64a18129-fad2-4c67-8bc4-bbcebf08d00e-wrap {
    text-align: center;
    margin-bottom: 48px;
    flex: 1 1 auto;
  }
  .paragraph-64a18129-fad2-4c67-8bc4-bbcebf08d00e {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #9ca3af;
  }
  .section-saas-cta {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #0e0e10;
  }
  .container-saas-cta-container {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    gap: 32px;
    border: 1px solid #2a2a2e;
    display: flex;
    padding: 48px 24px;
    max-width: 1200px;
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 24px;
    flex-direction: column;
    background-color: #18181b;
    flex: 1 1 auto;
  }
  .heading-saas-cta-title-wrap {
    max-width: 600px;
    flex: 1 1 auto;
  }
  .heading-saas-cta-title {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #f5f5f5;
    align-self: center;
  }
  .container-saas-cta-buttons {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    gap: 16px;
    display: flex;
    width: 100%;
    flex-direction: column;
    flex: 0 0 auto;
  }
  .button-saas-cta-btn-1-wrap {
    flex: 1 1 auto;
  }
  .button-saas-cta-btn-1 {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    color: #ffffff;
    border: none;
    cursor: pointer;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 9999px;
    background-color: #7c5cff;
  }
  .button-saas-cta-btn-2-wrap {
    flex: 1 1 auto;
  }
  .button-saas-cta-btn-2 {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    color: #f5f5f5;
    border: 1px solid #2a2a2e;
    cursor: pointer;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 9999px;
    background-color: transparent;
  }
  .footer-saas-footer {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 40px 20px 24px;
    border-top: 1px solid #2a2a2e;
    text-align: center;
    align-items: center;
    flex-direction: column;
    background-color: #0e0e10;
  }
  .container-saas-footer-content {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    gap: 40px;
    display: flex;
    max-width: 1200px;
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    flex: 1 1 auto;
  }
  .container-saas-footer-brand {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    gap: 12px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
  }
  .text-saas-footer-logo-wrap {
    flex: 1 1 auto;
  }
  .text-saas-footer-logo {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: #f5f5f5;
  }
  .paragraph-saas-footer-tagline-wrap {
    flex: 1 1 auto;
  }
  .paragraph-saas-footer-tagline {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #8b8b8f;
  }
  .container-saas-footer-bottom {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    border-top: 1px solid #2a2a2e;
    margin-top: 40px;
    margin-left: auto;
    padding-top: 24px;
    margin-right: auto;
    flex: 1 1 auto;
  }
  .text-saas-footer-copyright-wrap {
    flex: 1 1 auto;
  }
  .text-saas-footer-copyright {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    color: #8b8b8f;
  }
}