:root {
  --heading-color: #0F2959;
  --body-color: #3C3C3C;
  --accent-color: #0059FF;
  --light-bg: #F7F9FC;
  --dark-bg: #0F2959;
  --white-bg: #FFFFFF;
  --white-color: #FFFFFF;
  --light-color: #EAEDF0;
  --light-color2: #DBDBDB;
  --light-color3: #DBDBDB1A;
  --green-bg: #04B841;
  --orange: #FFAE00;
  --accent-soft: #E8F0FF;
  --grey-color: #747474;
  --font-heading: "DM Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --fs-xl: 20px;
  --fs-xl-lh: 32px;
  --fs-lg: 18px;
  --fs-lg-lh: 28px;
  --fs-md: 16px;
  --fs-md-lh: 24px;
  --fs-xs: 14px;
  --fs-xs-lh: 22px;
  --radius-card: 10px;
  --radius-pill: 50px;
  --container: 1296px;
  --section: 130px;
  --shadow-card: 0 4px 80px rgba(0, 0, 0, 0.078);
  --shadow-sticky: 0 4px 80px rgba(0, 0, 0, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--accent-color);
  color: #fff;
  padding: 10px 16px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-xl);
  line-height: 30px;
  color: var(--body-color);
  background: var(--white-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.24s ease-in-out;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

h1 {
  font-size: 120px;
  line-height: 1em;
  letter-spacing: -9px;
}

h2 {
  font-size: 75px;
  line-height: 1.07em;
  letter-spacing: -5px;
}

h3 {
  font-size: 35px;
  line-height: 1.4em;
}

h4 {
  font-size: 24px;
  line-height: 32px;
}

h5 {
  font-size: 20px;
  line-height: 1.4em;
}

p {
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 30px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1296px;
  }
}

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

.bg-white {
  background: var(--white-bg) !important;
}

.dark-bg {
  background: var(--dark-bg);
}

.light-color,
.light-color h1,
.light-color h2,
.light-color h3,
.light-color h4,
.light-color h5,
.light-color p,
.light-color a {
  color: var(--white-color);
}

.sofax-section-padding {
  padding: 130px 0 106px;
}

.sofax-section-padding2 {
  padding: 130px 0;
}

.sofax-section-padding3 {
  padding: 0 0 130px;
}

.sofax-hero-section {
  padding-top: 190px;
  position: relative;
}

.sofax-slider-section {
  padding: 100px 0;
}

.sofax-footer-top {
  padding: 130px 0 90px;
}

.overflow-hidden {
  overflow: hidden;
}

.sofax-section-title {
  padding-bottom: 80px;
}

.sofax-section-title.center {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.sofax-section-title.max-width-large {
  max-width: 830px;
}

.sofax-title-btn {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 10px;
}

/* Buttons */
.sofax-default-btn {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding: 18px 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color) !important;
  background: var(--accent-color);
  border: none;
  transition: all 0.4s ease-in-out;
  width: fit-content;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.sofax-default-btn.pill {
  border-radius: var(--radius-pill);
}

.sofax-default-btn:hover {
  background: var(--dark-bg);
  color: var(--white-color) !important;
}

.sofax-default-btn.sofax-header-btn {
  padding: 13px 36px;
}

.sofax-default-btn.outline-btn {
  background: transparent;
  border: 1px solid var(--heading-color);
  padding: 17px 40px;
  color: var(--heading-color) !important;
}

.sofax-default-btn.outline-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white-color) !important;
}

.sofax-default-btn.d-block {
  width: 100%;
}

.sofax-icon-btn {
  font-size: 16px;
  font-weight: 600;
  color: var(--body-color);
  display: inline-flex;
  align-items: center;
}

.sofax-icon-btn img {
  margin-left: 10px;
  width: 18px;
}

.sofax-icon-btn:hover {
  color: var(--heading-color);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 9;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px 0;
  background: var(--white-bg);
  transition: all 0.4s ease-in-out;
}

.site-header.sticky-menu {
  background: var(--white-bg);
  box-shadow: var(--shadow-sticky);
}

.site-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 54px;
  padding: 0;
  flex-wrap: nowrap;
}

.brand-logo a,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo img,
.footer-brand img {
  width: auto;
  height: 48px;
}

.brand-wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--heading-color);
  letter-spacing: -0.6px;
}

.footer-brand .brand-wordmark {
  color: #fff;
}

.site-header--menu-center .menu-block-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-menu-main {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link-item {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
  padding: 15px 16px;
  display: inline-block;
}

.nav-link-item:hover {
  color: var(--heading-color);
  opacity: 0.72;
}

.mobile-nav-wrap {
  display: none;
}

.mobile-nav-icon {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.mobile-nav-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading-color);
  transition: 0.3s;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: #fff;
  border-left: 1px solid #ddd;
  z-index: 9999;
  padding: 30px 24px;
  transition: right 0.4s ease-in-out;
}

.mobile-nav-panel.active {
  right: 0;
}

.mobile-nav-panel a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--heading-color);
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 20px;
  cursor: pointer;
}

.mobile-nav--overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.mobile-nav--overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero */
.sofax-hero-content.center {
  max-width: 1074px;
  margin: 0 auto 50px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sofax-hero-content h1 {
  margin-bottom: 24px;
}

.sofax-hero-content p {
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--body-color);
}

.sofax-hero-content > .sofax-default-btn {
  margin: 0 auto 24px;
}

.sofax-subscription-field {
  max-width: 640px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--grey-color);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 8px;
  overflow: hidden;
}

.sofax-subscription-field input {
  flex: 1;
  height: 52px;
  border: none !important;
  outline: none;
  font-size: 16px;
  padding: 15px 20px;
  background: transparent;
  color: var(--heading-color);
  border-radius: var(--radius-pill);
}

.sofax-subscription-field input::placeholder {
  color: var(--grey-color);
}

.sofax-subscription-field .sofax-default-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.sofax-hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 40px;
}

.sofax-hero-rating .stars {
  display: flex;
  gap: 4px;
}

.sofax-hero-thumb1 {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}

.sofax-hero-shape {
  position: absolute;
  left: 4%;
  top: 42%;
  z-index: 3;
  pointer-events: none;
}

.sofax-hero-shape2 {
  position: absolute;
  right: 6%;
  bottom: 18%;
  z-index: 3;
  pointer-events: none;
}

/* Dashboard mockup */
.hero-dashboard {
  background: #fff;
  border: 1px solid var(--light-color);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero-dashboard img {
  width: 100%;
  display: block;
}

.dash-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid var(--light-color);
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dbdbdb;
}

.dash-dot:nth-child(1) { background: #ff5f57; }
.dash-dot:nth-child(2) { background: #febc2e; }
.dash-dot:nth-child(3) { background: #28c840; }

.dash-url {
  margin-left: 12px;
  flex: 1;
  height: 28px;
  background: var(--light-bg);
  border-radius: 20px;
  font-size: 13px;
  color: var(--grey-color);
  display: flex;
  align-items: center;
  padding: 0 14px;
}

.dash-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 420px;
}

.dash-side {
  background: #fff;
  border-right: 1px solid var(--light-color);
  padding: 24px 16px;
}

.dash-side-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--heading-color);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-side-brand span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-color);
  display: inline-block;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--body-color);
  margin-bottom: 4px;
}

.dash-nav-item.active {
  background: var(--light-bg);
  color: var(--heading-color);
}

.dash-main {
  padding: 24px;
}

.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dash-topbar h5 {
  font-size: 18px;
}

.dash-search {
  width: 220px;
  height: 36px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--light-color);
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.dash-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid var(--light-color);
}

.dash-card span {
  font-size: 13px;
  color: var(--grey-color);
  display: block;
  margin-bottom: 6px;
}

.dash-card strong {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--heading-color);
  display: block;
}

.dash-card em {
  font-style: normal;
  font-size: 12px;
  color: var(--green-bg);
  font-weight: 600;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.dash-panel {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid var(--light-color);
  min-height: 170px;
}

.dash-panel h6 {
  font-size: 15px;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 110px;
}

.dash-bars i {
  display: block;
  width: 100%;
  border-radius: 6px 6px 0 0;
  background: var(--accent-color);
  font-style: normal;
}

.dash-bars i:nth-child(odd) {
  background: var(--green-bg);
}

.dash-list-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-color);
}

.dash-list-row:last-child {
  border-bottom: 0;
}

.dash-placeholder-note {
  text-align: center;
  font-size: 12px;
  color: var(--grey-color);
  padding: 8px 0 4px;
}

/* Logo slider / clients */
.sofax-slider-title {
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--heading-color);
}

.client-marquee {
  overflow: hidden;
}

.client-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.client-marquee:hover .client-track,
.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.client-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  height: 80px;
  padding: 0 28px;
  border: 1px solid var(--light-color);
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--heading-color);
  background: #fff;
}

.client-chip:hover {
  box-shadow: var(--shadow-card);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Icon boxes */
.sofax-iconbox-wrap {
  border-radius: var(--radius-card);
  background: #fff;
  padding: 30px;
  margin-bottom: 24px;
  transition: box-shadow 0.4s ease-in-out;
  height: calc(100% - 24px);
}

.sofax-iconbox-wrap:hover {
  box-shadow: var(--shadow-card);
}

.sofax-iconbox-icon {
  margin-bottom: 30px;
}

.sofax-iconbox-icon img {
  width: 72px;
  height: 72px;
}

.sofax-iconbox-data h4 {
  margin-bottom: 15px;
}

.sofax-iconbox-data p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}

.sofax-iconbox-wrap2 {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 28px;
}

.sofax-iconbox-wrap2 img {
  width: 28px;
  flex-shrink: 0;
  margin-top: 4px;
}

.sofax-iconbox-wrap2 h4 {
  margin-bottom: 8px;
}

.sofax-iconbox-wrap2 p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 28px;
}

.sofax-content-img {
  position: relative;
}

.sofax-content-img.box-shadow img,
.sofax-content-thumb {
  border-radius: 16px;
  width: 100%;
  display: block;
}

.sofax-default-content.ml-50 {
  margin-left: 50px;
}

.sofax-default-content.mr-80 {
  margin-right: 80px;
}

.sofax-default-content h2 {
  margin-bottom: 24px;
}

.floating-card {
  position: absolute;
  right: -20px;
  bottom: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 20px;
  width: 230px;
}

.floating-card h5 {
  margin-bottom: 12px;
  font-size: 16px;
}

.pie {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: conic-gradient(#04B841 0 35%, #FFAE00 35% 50%, #0F2959 50% 80%, #0059FF 80% 100%);
}

.pie-legend {
  font-size: 12px;
  line-height: 20px;
  color: var(--body-color);
}

.photo-frame {
  background: linear-gradient(160deg, #e8f3ec, #f3e8fb 55%, #f7f7f7);
  border-radius: 16px;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 40px 50px auto 40px;
  height: 70%;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 30%, #d7c4b0 0 28%, transparent 29%),
    linear-gradient(180deg, #8eb8d4 0 42%, #e8eef2 42%);
}

.photo-frame .placeholder-label {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.92);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--grey-color);
}

.sec-section {
  background: #f7f4fa;
}

.sec-section h2 {
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -1.6px;
  margin: 12px 0 16px;
  max-width: 520px;
}

.sec-lead {
  max-width: 540px;
  margin-bottom: 28px !important;
  color: var(--body-color);
}

.sec-checks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  max-width: 540px;
}

.sec-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.sec-checks li:last-child {
  margin-bottom: 0;
}

.sec-checks img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sec-checks strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
  margin-bottom: 4px;
}

.sec-checks span {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--body-color);
}

.sec-section .rec-cta {
  margin-top: 4px;
}

.sec-panel {
  background: #fff;
  border-radius: 28px;
  padding: 8px 22px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.sec-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  border-bottom: 1px solid #ececef;
  text-decoration: none;
}

.sec-row:last-child {
  border-bottom: 0;
}

.sec-row:hover .sec-arrow {
  background: var(--accent-color);
}

.sec-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sec-row-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.sec-row-copy strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.sec-row-copy span {
  font-size: 14px;
  line-height: 22px;
  color: var(--grey-color);
}

.sec-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

@media (max-width: 991px) {
  .sec-section h2 {
    font-size: 32px;
    max-width: none;
  }
}

/* How it works */
.step-card {
  text-align: left;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  height: 100%;
  transition: box-shadow 0.4s ease-in-out;
}

.step-card:hover {
  box-shadow: var(--shadow-card);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white-color);
}

.step-card h4 {
  margin-bottom: 12px;
}

.step-card p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 28px;
}

/* Clients spotlight */
.client-card {
  background: #fff;
  border-radius: 10px;
  padding: 36px;
  height: 100%;
  transition: box-shadow 0.4s ease-in-out;
  border: 1px solid var(--light-color);
}

.client-card:hover {
  box-shadow: var(--shadow-card);
}

.client-card-logo {
  display: flex;
  align-items: center;
  min-height: 88px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-color);
}

.client-card-logo img {
  max-height: 72px;
  max-width: 280px;
  width: auto;
  object-fit: contain;
}

.client-card .tag {
  display: inline-block;
  background: var(--accent-color);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white-color);
}

.client-card h4 {
  margin-bottom: 12px;
}

.client-card p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Pricing */
.pricing-switch {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.pricing-btn {
  display: inline-flex;
  background: #fff;
  border-radius: 50px;
  padding: 6px;
  border: 1px solid var(--light-color);
}

.pricing-btn button {
  border: 0;
  background: transparent;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--heading-color);
  cursor: pointer;
  transition: 0.4s;
}

.pricing-btn button.active {
  background: var(--accent-color);
  color: var(--white-color);
}

.sofax-pricing-wrap {
  border-radius: var(--radius-card);
  padding: 30px;
  background: #fff;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sofax-pricing-header {
  margin-bottom: 16px;
}

.sofax-pricing-header img {
  height: 56px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  margin-bottom: 12px;
}

.sofax-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--light-color);
}

.sofax-pricing-price h2,
.sofax-pricing-price .plan-price {
  font-size: 70px;
  line-height: 80px;
  letter-spacing: -3px;
}

.sofax-pricing-price span {
  font-size: 16px;
  color: var(--grey-color);
  font-weight: 500;
}

.sofax-pricing-body h5 {
  margin-bottom: 16px;
}

.sofax-pricing-body ul li {
  position: relative;
  padding-left: 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.sofax-pricing-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background: url("../images/check-circle.svg") no-repeat center / contain;
}

.sofax-pricing-footer {
  margin-top: auto;
  padding-top: 10px;
}

.sofax-pricing-wrap.active .sofax-pricing-footer .sofax-default-btn {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.sofax-pricing-wrap.active .sofax-pricing-footer .sofax-default-btn:hover {
  background: var(--dark-bg);
  border-color: var(--dark-bg);
  color: #fff !important;
}

.plan-save {
  display: block;
  min-height: 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-bg);
  margin: 6px 0 10px;
}

/* Recursos — light cards UI */
.rec-section {
  background: #fff;
}

.rec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.rec-head-copy {
  max-width: 760px;
}

.rec-head h2 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.rec-head p {
  margin-bottom: 0;
  max-width: 620px;
}

.rec-cta {
  gap: 8px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(229, 171, 243, 0.45);
}

.rec-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rec-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.4s ease-in-out;
}

.rec-card:hover {
  transform: translateY(-4px);
}

.rec-card-ico {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.rec-card-pix .rec-card-ico { background: #FFF6E0; }
.rec-card-acoes .rec-card-ico { background: #E6F9EE; }
.rec-card-ia .rec-card-ico { background: var(--accent-soft); }

.rec-line {
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.rec-card-pix .rec-line { background: var(--orange); }
.rec-card-acoes .rec-line { background: var(--green-bg); }
.rec-card-ia .rec-line { background: var(--accent-color); }

.rec-card h4 {
  margin-bottom: 12px;
}

.rec-card p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
  flex: 1;
}

.rec-card a {
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rec-card-pix a { color: var(--orange); }
.rec-card-acoes a { color: var(--green-bg); }
.rec-card-ia a { color: var(--accent-color); }

.rec-card a:hover { opacity: 0.75; }

.rec-trust {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 8px;
}

.rec-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rec-trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
}

.rec-trust-item span {
  font-size: 14px;
  line-height: 22px;
  color: var(--grey-color);
}

@media (max-width: 1199px) {
  .rec-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .rec-head h2 {
    font-size: 36px;
  }

  .rec-cards,
  .rec-trust {
    grid-template-columns: 1fr;
  }
}

/* Integration — light cards UI */
.integ-section {
  background: var(--light-bg);
}

.integ-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  margin-bottom: 22px;
}

.integ-section h2 {
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -2px;
}

.integ-mark {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.integ-mark::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 6px;
  height: 12px;
  background: var(--orange);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.85;
  transform: rotate(-1.5deg);
}

.integ-section > .container > .row p,
.integ-section .col-lg-5 > p {
  color: var(--body-color);
}

.integ-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.integ-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 14px 8px 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.integ-pill-ico,
.integ-card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.integ-pill-ico {
  width: 28px;
  height: 28px;
}

.integ-card-ico {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.ico-mp { background: #E8F0FF; }
.ico-pix { background: #E6F9EE; }
.ico-bank { background: #E6F9EE; }
.ico-ai { background: #E8F0FF; }
.ico-wa { background: #E6F9EE; }
.ico-ga { background: #FFF6E0; }

.integ-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.integ-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.integ-card:hover {
  transform: translateY(-4px);
}

.integ-card h4 {
  margin-bottom: 4px;
}

.integ-card-kicker {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px !important;
  line-height: 22px;
}

.integ-card p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  color: var(--body-color);
}

.k-mp { color: var(--accent-color); }
.k-pix { color: var(--green-bg); }
.k-bank { color: var(--green-bg); }
.k-ai { color: var(--accent-color); }

.integ-bar {
  margin-top: 28px;
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.integ-bar-main,
.integ-bar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.integ-bar-shield {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.integ-bar strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
  margin-bottom: 4px;
}

.integ-bar span {
  display: block;
  font-size: 13px;
  line-height: 20px;
  color: var(--grey-color);
}

.integ-bar-item svg {
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .integ-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .integ-section h2 {
    font-size: 36px;
  }
}

/* Testimonials */
.sofax-testimonial-content {
  border: 1px solid var(--light-color2);
  padding: 35px;
  border-radius: var(--radius-card);
  height: 100%;
  background: #fff;
}

.sofax-testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.sofax-testimonial-data p {
  margin-bottom: 24px;
  font-size: 20px;
}

.sofax-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sofax-testimonial-author-thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--white-color);
  background: var(--accent-color);
  flex-shrink: 0;
}

.sofax-testimonial-author-data p {
  margin: 0;
  font-size: 15px;
  color: var(--grey-color);
}

.testimonial-marquee {
  overflow: hidden;
  margin-bottom: 20px;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.testimonial-track .sofax-testimonial-content {
  width: 420px;
  flex-shrink: 0;
}

.track-left {
  animation: marquee 40s linear infinite;
}

.track-right {
  animation: marquee-rev 40s linear infinite;
}

@keyframes marquee-rev {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* FAQ */
.sofax-accordion-wrap1 .accordion-item {
  padding: 8px 24px;
  border-radius: 10px;
  border: 1px solid var(--light-color) !important;
  margin-bottom: 24px;
  background: #fff;
}

.sofax-accordion-wrap1 .accordion-button {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--heading-color);
  background: transparent;
  box-shadow: none !important;
  padding: 16px 44px 16px 0;
  text-align: left;
}

.sofax-accordion-wrap1 .accordion-button::after {
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23FFFFFF' d='M6 6V1h2v5h5v2H8v5H6V8H1V6h5z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
}

.sofax-accordion-wrap1 .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23FFFFFF' d='M1 6h12v2H1z'/%3E%3C/svg%3E");
}

.sofax-accordion-wrap1 .accordion-body {
  padding: 0 0 16px;
  font-size: 18px;
  line-height: 28px;
  color: var(--body-color);
}

/* CTA */
.cta-wrap {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.cta-wrap h2 {
  margin-bottom: 28px;
}

.cta-wrap .micro {
  margin-top: 16px;
  font-size: 16px;
  color: var(--grey-color);
}

/* Footer */
.sofax-footer-section {
  background: var(--dark-bg);
  color: #fff;
}

.sofax-footer-section p,
.sofax-footer-section a,
.sofax-footer-section h5 {
  color: #fff;
}

.sofax-footer-menu h5 {
  margin-bottom: 24px;
}

.sofax-footer-menu li {
  margin-bottom: 15px;
}

.sofax-footer-menu a:hover {
  color: var(--accent-color);
}

.sofax-social-icon {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.sofax-social-icon a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sofax-social-icon a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.sofax-social-icon a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.sofax-footer-bottom {
  border-top: 1px solid var(--light-color3);
  padding: 24px 0;
  font-size: 15px;
  color: #bdbdbd;
}

/* Forms */
input,
textarea {
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 50px;
  padding: 15px 24px 15px 20px;
  border: 1px solid var(--grey-color) !important;
  font-family: var(--font-body);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--accent-color) !important;
}

textarea {
  height: 200px;
  border-radius: 15px;
}

.contact-note {
  font-size: 16px;
  color: var(--grey-color);
  margin-top: 12px;
}

/* Utils */
.mb-0 { margin-bottom: 0 !important; }
.mb-130 { margin-bottom: 0; }
.tac { text-align: left; }

@media (max-width: 1199px) {
  .site-header--menu-center .menu-block-wrapper {
    position: static;
    transform: none;
    display: none;
  }

  .mobile-nav-wrap {
    display: block;
  }

  .header-btn-l1 {
    display: none;
  }

  .brand-logo img {
    height: 40px;
  }

  h1 { font-size: 75px; letter-spacing: -2px; }
  h2 { font-size: 48px; letter-spacing: -3px; }

  .sofax-default-content.ml-50,
  .sofax-default-content.mr-80 {
    margin: 40px 0 0;
  }

  .sofax-title-btn {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .sofax-pricing-price h2,
.sofax-pricing-price .plan-price {
    font-size: 52px;
    line-height: 1.1;
  }
}

@media (max-width: 991px) {
  .sofax-section-padding { padding: 100px 0 76px; }
  .sofax-section-padding2 { padding: 90px 0; }
  .sofax-section-padding3 { padding: 0 0 90px; }
  .sofax-hero-section { padding-top: 140px; }
  .sofax-slider-section { padding: 80px 0; }
  .sofax-footer-top { padding: 100px 0 70px; }
  .sofax-section-title { padding-bottom: 60px; }

  .dash-body { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .sofax-hero-shape,
  .sofax-hero-shape2 { display: none; }
  .floating-card { position: relative; right: auto; bottom: auto; margin-top: 20px; }
  .photo-frame { min-height: 360px; }
}

@media (max-width: 767px) {
  body { font-size: 18px; line-height: 28px; }
  h1 { font-size: 40px; letter-spacing: -1px; }
  h2 { font-size: 36px; letter-spacing: -0.64px; }
  h3 { font-size: 30px; }
  p { margin-bottom: 20px; }

  .sofax-section-padding { padding: 80px 0 56px; }
  .sofax-section-padding2 { padding: 60px 0; }
  .sofax-section-padding3 { padding: 0 0 60px; }
  .sofax-hero-section { padding-top: 120px; }
  .sofax-slider-section { padding: 60px 0; }
  .sofax-footer-top { padding: 70px 0 50px; }
  .sofax-section-title { padding-bottom: 40px; }

  .sofax-subscription-field {
    flex-direction: column;
    border-radius: 24px;
    padding: 12px;
  }

  .sofax-subscription-field input,
  .sofax-subscription-field .sofax-default-btn {
    width: 100%;
  }

  .dash-cards,
  .dash-grid,
  .integ-cards {
    grid-template-columns: 1fr;
  }

  .integ-bar {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .sofax-accordion-wrap1 .accordion-button {
    font-size: 18px;
  }

  .testimonial-track .sofax-testimonial-content {
    width: 300px;
  }
}

/* Social-action management mock (admin dashboard tabs) */
.sa-section {
  background: var(--light-bg);
  scroll-margin-top: 96px;
}

.sa-section .sofax-section-title p {
  max-width: 640px;
  margin: 12px auto 0;
  color: var(--body-color);
}

.sa-mock {
  background: #f8f7fa;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid #ecebf1;
}

.sa-mock.is-in {
  animation: saMockIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes saMockIn {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.sa-mock-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #fff;
  border-bottom: 1px solid #ecebf1;
}

.sa-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9d9e3;
}

.sa-dot:nth-child(1) { background: #ea5455; }
.sa-dot:nth-child(2) { background: #ff9f43; }
.sa-dot:nth-child(3) { background: var(--green-bg); }

.sa-url {
  margin-left: 10px;
  color: #6f6b7d;
  font-size: 13px;
  font-weight: 500;
}

.sa-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 14px 16px 6px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #0059FF #ecebf1;
}

.sa-tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: #6f6b7d;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 14px;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.sa-tab svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sa-tab:hover {
  background: rgba(115, 103, 240, 0.1);
  color: #0059FF;
}

.sa-tab.active {
  background: #0059FF;
  color: #fff;
  box-shadow: 0 6px 16px rgba(115, 103, 240, 0.28);
}

.sa-progress {
  height: 3px;
  background: #ecebf1;
}

.sa-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: #0059FF;
}

.sa-progress.is-run i {
  animation: saFill 4s linear forwards;
}

.sa-progress.is-stop {
  display: none;
}

@keyframes saFill {
  from { width: 0; }
  to { width: 100%; }
}

.sa-body {
  padding: 16px 18px 22px;
}

.sa-panel[hidden] {
  display: none;
}

.sa-panel:not([hidden]) {
  animation: saPanelIn 0.45s ease both;
}

.sa-panel:not([hidden]) .sa-card {
  animation: saCardIn 0.5s ease both;
}

.sa-kpis .sa-card:nth-child(1) { animation-delay: 0.04s; }
.sa-kpis .sa-card:nth-child(2) { animation-delay: 0.1s; }
.sa-kpis .sa-card:nth-child(3) { animation-delay: 0.16s; }
.sa-kpis .sa-card:nth-child(4) { animation-delay: 0.22s; }
.sa-bars .sa-card:nth-child(1) { animation-delay: 0.18s; }
.sa-bars .sa-card:nth-child(2) { animation-delay: 0.24s; }
.sa-bars .sa-card:nth-child(3) { animation-delay: 0.3s; }
.sa-bars .sa-card:nth-child(4) { animation-delay: 0.36s; }

@keyframes saPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes saCardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.sa-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.sa-bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sa-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 18px 16px;
  color: #5d596c;
  border: 1px solid #ecebf1;
  box-shadow: 0 4px 18px rgba(47, 43, 61, 0.04);
}

.sa-card > span {
  display: block;
  color: #a5a3ae;
  font-size: 13px;
  margin-bottom: 8px;
}

.sa-card > strong {
  display: block;
  color: #5d596c;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.sa-card > small {
  display: block;
  margin-top: 6px;
  color: #a5a3ae;
  font-size: 12px;
}

.sa-card h5,
.sa-card h6 {
  color: #5d596c;
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
}

.sa-card h5 { font-size: 20px; margin-top: 10px; }

.sa-card p {
  color: #6f6b7d;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 10px;
}

.sa-muted { color: #a5a3ae !important; font-size: 13px !important; }

.sa-bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  color: #6f6b7d;
}

.sa-bar {
  height: 10px;
  background: #ecebf1;
  border-radius: 50px;
  overflow: hidden;
}

.sa-bar i {
  display: block;
  height: 100%;
  border-radius: 50px;
}

.sa-bar i.is-green { background: var(--green-bg); }
.sa-bar i.is-purple { background: var(--accent-color); }
.sa-bar i.is-yellow { background: var(--orange); }

.sa-status {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 108px;
}

.sa-status em {
  display: inline-flex;
  align-self: flex-start;
  font-style: normal;
  background: #0059FF;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
}

.sa-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.sa-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.sa-pills b {
  font-weight: 700;
  font-size: 12px;
  background: #0059FF;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
}

.sa-pills b.is-info { background: #00cfe8; color: #003c44; }
.sa-pills b.is-muted { background: #eeedf0; color: #6f6b7d; }
.sa-pills b.is-ok { background: var(--green-bg); color: #fff; }

.sa-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.sa-card-head h6 { margin: 0; }

.sa-mini-btn {
  background: #0059FF;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 8px;
}

.sa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.sa-table th,
.sa-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid #ecebf1;
}

.sa-table th { color: #a5a3ae; font-weight: 600; }
.sa-table td { color: #5d596c; }

.sa-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}

.sa-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #6f6b7d;
}

.sa-form .sa-span { grid-column: 1 / -1; }

.sa-form input,
.sa-form textarea {
  background: #fff;
  border: 1px solid #d1d0d5;
  color: #5d596c;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
}

.sa-form textarea { min-height: 72px; resize: none; }

.sa-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 12px 0;
}

.sa-ph {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f6b7d;
  font-size: 13px;
  font-weight: 600;
  background: #f3f2f5;
  border: 1px dashed #d1d0d5;
}

@media (max-width: 991px) {
  .sa-kpis,
  .sa-bars,
  .sa-split,
  .sa-form,
  .sa-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .sa-kpis,
  .sa-bars,
  .sa-split,
  .sa-form,
  .sa-gallery {
    grid-template-columns: 1fr;
  }

  .sa-card > strong { font-size: 22px; }
}

@media (max-width: 575px) {
  .sofax-hero-section { padding-top: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  .client-track,
  .track-left,
  .track-right,
  .sa-mock.is-in,
  .sa-panel:not([hidden]),
  .sa-panel:not([hidden]) .sa-card,
  .sa-progress.is-run i {
    animation: none;
  }
}
