@charset "UTF-8";
@import url("../fonts/typography.css");
/* Font weights */
/* =========================
   Typography scale
   sizes: 14, 18, 20, 24, 48, 64
   line-heights: 20, 28, 32, 60, 64, 72
========================= */
/* _mixin.scss (helpers only) */
/* functions */
/* responsive */
/* typography */
/* helpers */
/* container-fluid theo design 1920 (1888 + gutter) */
html,
body,
section,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body,
html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  margin: 0;
}

input,
button:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
  color: currentColor;
}

*:before,
*:after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Text-level semantic
 */
:active {
  outline: none;
}

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

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

/**
 * Embedded content
 */
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

/**
 * Grouping content
 */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 16px;
}

/**
 * Forms
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button,
input[type=submit] {
  padding: 0;
  overflow: visible;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
  border-radius: 0;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: none;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
}

input::placeholder,
textarea::placeholder {
  color: inherit;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/**
 * Tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}


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

/* Base typography */
body {
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: rgb(33, 33, 33);
  overflow-x: hidden;
  margin: 0;
  background: rgb(220, 214, 200);
}

/* Common media */
figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form */
input,
textarea,
select {
  outline: 0;
  background: transparent;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button,
textarea::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button,
select::-webkit-outer-spin-button,
select::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number],
textarea[type=number],
select[type=number] {
  -moz-appearance: textfield;
}

/* Layout containers */
.header-wrap {
  width: calc(100% - 2 * 16px);
  max-width: 1888px;
  padding-left: 0;
  padding-right: 0;
  margin-inline: auto;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .header-wrap {
    width: calc(100% - 2 * 14px);
    max-width: none;
  }
}
@media (max-width: 640px) {
  .header-wrap {
    width: calc(100% - 2 * 12px);
  }
}
@media (max-width: 480px) {
  .header-wrap {
    width: calc(100% - 2 * 10px);
  }
}
.header-wrap {
  height: 96px;
  margin-top: 16px;
}

.section-wrap {
  width: calc(100% - 2 * 16px);
  max-width: 1888px;
  padding-left: 0;
  padding-right: 0;
  margin-inline: auto;
  border-radius: 24px;
}
@media (max-width: 768px) {
  .section-wrap {
    width: calc(100% - 2 * 14px);
    max-width: none;
  }
}
@media (max-width: 640px) {
  .section-wrap {
    width: calc(100% - 2 * 12px);
  }
}
@media (max-width: 480px) {
  .section-wrap {
    width: calc(100% - 2 * 10px);
  }
}

/* Utilities */
.truncate-4row, .truncate-3row, .truncate-2row {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate-2row {
  -webkit-line-clamp: 2;
}

.truncate-3row {
  -webkit-line-clamp: 3;
}

.truncate-4row {
  -webkit-line-clamp: 4;
}

.rounded-full {
  border-radius: 50%;
}

.invisible {
  visibility: hidden;
  height: 0;
}

.visible {
  visibility: unset;
  height: fit-content;
}

.hidden {
  display: none;
}

.block {
  display: block !important;
}

/* Display */
.flex {
  display: flex !important;
}

.inline-flex {
  display: inline-flex !important;
}

/* Direction */
.flex-row {
  flex-direction: row !important;
}

.flex-col {
  flex-direction: column !important;
}

/* Align items */
.items-start {
  align-items: flex-start !important;
}

.items-center {
  align-items: center !important;
}

.items-end {
  align-items: flex-end !important;
}

/* Justify */
.justify-start {
  justify-content: flex-start !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

/* Gap (chọn vài mức hay dùng) */
.gap-8 {
  gap: 8px !important;
}

.gap-12 {
  gap: 12px !important;
}

.gap-16 {
  gap: 16px !important;
}

.gap-24 {
  gap: 24px !important;
}

/* Wrap */
.flex-wrap {
  flex-wrap: wrap !important;
}

/* Footer font */
.footer,
.footer * {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 600;
}

/* Color utilities */
.text-primary {
  color: rgb(245, 126, 32);
}

.text-gray {
  color: rgb(126, 134, 149);
}

.text-gray-2 {
  color: rgb(129, 129, 129);
}

.bg-primary {
  background: rgb(245, 126, 32);
}

.bg-black {
  background: rgb(33, 33, 33);
}

.bg-white {
  background: rgb(255, 255, 255);
}

.wc-btn-primary {
  border: 1px solid rgb(245, 126, 32);
  background: rgb(255, 255, 255);
  color: rgb(245, 126, 32);
  transition: all 0.7s ease;
}
.wc-btn-primary:hover {
  background: rgb(255, 255, 255);
  color: rgb(245, 126, 32);
  border-color: rgb(245, 126, 32);
}

.container-fluid {
  width: calc(100% - 2 * 16px);
  max-width: 1888px;
  padding-left: 0;
  padding-right: 0;
  margin-inline: auto;
  border-radius: 24px;
}
@media (max-width: 768px) {
  .container-fluid {
    width: calc(100% - 2 * 14px);
    max-width: none;
  }
}
@media (max-width: 640px) {
  .container-fluid {
    width: calc(100% - 2 * 12px);
  }
}
@media (max-width: 480px) {
  .container-fluid {
    width: calc(100% - 2 * 10px);
  }
}

.header {
  margin-top: 16px;
  position: relative;
}
.header .container-fluid {
  width: calc(100% - 2 * 16px);
  max-width: 1888px;
  padding-left: 0;
  padding-right: 0;
  margin-inline: auto;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .header .container-fluid {
    width: calc(100% - 2 * 14px);
    max-width: none;
  }
}
@media (max-width: 640px) {
  .header .container-fluid {
    width: calc(100% - 2 * 12px);
  }
}
@media (max-width: 480px) {
  .header .container-fluid {
    width: calc(100% - 2 * 10px);
  }
}
.header .container-fluid {
  background-color: rgb(239, 238, 235);
  padding: 17px 48px 20px 80px;
}
.header__btn-contact {
  padding: 14px 48px;
  background-color: rgb(245, 126, 32);
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0em;
  font-style: normal;
  color: rgb(255, 255, 255);
  border-radius: 100px;
}
.header__btn-contact:hover {
  background: rgb(255, 255, 255);
  color: rgb(245, 126, 32);
  border-color: rgb(245, 126, 32);
}
.header__nav {
  color: #474e5c;
}
.header__nav-desktop {
  display: flex;
  gap: 48px;
}
.header__menu {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.header__dropdown {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(80vw, 320px);
  background: white;
  z-index: 1000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
  padding: 40px;
  overflow-y: auto;
}
.header__nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header__btn-contact-mobile {
  margin-top: 20px;
  display: flex;
  justify-self: center;
  padding: 10px 36px;
  white-space: nowrap;
}
.header {
  /* Backdrop default hidden */
}
.header__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 999;
}
@media (max-width: 1536px) {
  .header__btn-contact-desktop {
    padding: 12px 36px;
  }
}
@media (max-width: 1280px) {
  .header .container-fluid {
    padding: 16px 36px 18px 56px;
  }
  .header__btn-contact-desktop {
    padding: 10px 24px;
  }
}
@media (max-width: 1024px) {
  .header .container-fluid {
    padding: 14px 24px 16px 24px;
  }
  .header__img-logo {
    width: 80px;
    aspect-ratio: 116/59;
  }
  .header__menu {
    display: block !important;
  }
  .header__nav-desktop {
    display: none;
  }
  .header__btn-contact-desktop {
    display: none;
  }
}
@media (max-width: 768px) {
  .header .container-fluid {
    padding: 12px 16px 14px 16px;
  }
}
@media (max-width: 640px) {
  .header .container-fluid {
    padding: 10px 12px 12px 12px;
  }
  .header__menu {
    display: none !important;
  }
  .header__btn-contact-desktop {
    display: block;
    padding: 8px 12px;
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0em;
    font-style: normal;
  }
}

.hero {
  margin-top: 16px;
}
.hero__container {
  display: grid;
  grid-template-columns: 56% 43%;
  gap: 16px;
  align-items: stretch;
}
.hero__left {
  background: rgb(239, 238, 235);
  border-radius: 24px;
  display: flex;
  padding: 56px 80px;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.hero__title {
  display: flex;
  justify-content: space-between;
  gap: 75px;
}
.hero__title-text {
  width: 70%;
  color: rgb(33, 33, 33);
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: 0em;
  font-style: normal;
}
.hero__desc-user {
  color: rgb(129, 129, 129);
}
.hero__desc {
  color: rgb(129, 129, 129);
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0em;
  font-style: normal;
}
.hero__form-inner {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
}
.hero__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 24px;
}
@media (max-width: 768px) {
  .hero__form-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}
.hero__form-field {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__form-field--full {
  grid-column: 1/-1;
}
.hero__form-label {
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0em;
  font-style: normal;
  color: rgb(129, 129, 129);
}
.hero__form-input {
  height: 56px;
  width: 100%;
  border-radius: 100px !important;
  border: 1px solid #c9c9c9 !important;
  padding: 0 18px;
  background: rgb(255, 255, 255);
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0em;
  font-style: normal;
  color: rgb(33, 33, 33);
}
.hero__form-input:focus {
  border-color: rgb(245, 126, 32);
  box-shadow: 0 0 0 4px rgba(245, 126, 32, 0.15);
}
.hero__form-grid > p {
  grid-column: 1/-1;
  margin: 0;
}
.hero__form-submit {
  margin-top: 2px;
  width: 100%;
  border-radius: 100px;
  padding: 14px 0;
  background: rgb(245, 126, 32);
  color: rgb(255, 255, 255);
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0em;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero__right {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
}
.hero__img-wrap {
  width: 100%;
  height: 100%;
}
@media (max-width: 1536px) {
  .hero__left {
    padding: 44px 56px;
    gap: 32px;
  }
  .hero__title {
    gap: 40px;
  }
  .hero__title-text {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 52px;
    line-height: 60px;
    letter-spacing: 0em;
    font-style: normal;
    width: 72%;
  }
  .hero__form-inner {
    padding: 32px;
  }
  .hero__form-grid {
    row-gap: 24px;
    column-gap: 20px;
  }
}
@media (max-width: 1280px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero__left {
    padding: 36px 44px;
    gap: 24px;
    order: 2;
  }
  .hero__title-text {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 52px;
    letter-spacing: 0em;
    font-style: normal;
    width: 76%;
  }
  .hero__desc {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .hero__form-inner {
    padding: 24px;
  }
  .hero__form-label {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .hero__form-input {
    height: 48px;
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .hero__form-submit {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
    padding: 12px 0;
  }
}
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero__left {
    padding: 28px 28px;
    gap: 20px;
  }
  .hero__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero__title-text {
    width: 100%;
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .hero__form-inner {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .hero__left {
    padding: 22px 18px;
    gap: 16px;
  }
  .hero__title-text {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 42px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .hero__desc {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .hero__form-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 16px;
  }
  .hero__form-label {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .hero__form-input {
    height: 48px;
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .hero__form-submit {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0em;
    font-style: normal;
    padding: 12px 0;
  }
}
@media (max-width: 640px) {
  .hero__container {
    grid-template-columns: 1fr;
  }
  .hero__img-wrap {
    display: none;
  }
  .hero__title-text {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .hero__form-inner {
    padding: 16px;
  }
}
@media (max-width: 480px) {
  .hero__title-text {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0em;
    font-style: normal;
  }
}

.lead-loss {
  color: rgb(255, 255, 255);
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0em;
  font-style: normal;
}
.lead-loss__container {
  margin-top: 16px;
  background: rgb(0, 74, 66);
  border-radius: 24px;
  padding: 64px 0;
}
.lead-loss__header {
  text-align: center;
  padding: 0 24px;
}
.lead-loss__title {
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0em;
  font-style: normal;
  color: #f0f2f4;
}
.lead-loss__subtitle {
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0em;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  margin-top: 18px;
}
.lead-loss__slider {
  position: relative;
  overflow: visible;
  margin: 0 auto;
}
.lead-loss .swiper-slide {
  height: auto;
}
.lead-loss__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 141px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 24px 24px 32px 24px;
}
.lead-loss__card img {
  width: 80px;
  height: 80px;
}
.lead-loss__card--active {
  background: rgba(255, 255, 255, 0.18);
}
.lead-loss__card-content {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #9da5b4;
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0em;
  font-style: normal;
}
.lead-loss__card-title {
  color: rgb(255, 255, 255);
  display: inline;
}
.lead-loss__card-desc {
  color: #9da5b4;
}
.lead-loss .swiper-wrapper {
  margin: 72px 0;
  height: fit-content;
}
.lead-loss__nav {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.lead-loss__nav-btn {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 55, 48);
  border-radius: 100px;
  cursor: pointer;
  user-select: none;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  transition: all;
}
.lead-loss__nav-btn svg {
  width: 14px;
  height: 24px;
  opacity: 0.95;
}
.lead-loss__nav-btn:hover {
  background: rgba(0, 0, 0, 0.32);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}
.lead-loss__nav-btn:active {
  transform: scale(0.98);
}
.lead-loss__nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}
@media (max-width: 1536px) {
  .lead-loss__container {
    padding: 52px 0;
  }
  .lead-loss__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 52px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .lead-loss__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
    margin-top: 14px;
  }
  .lead-loss .swiper-wrapper {
    margin: 56px 0;
  }
  .lead-loss__slider {
    padding: 0 20px 78px;
  }
  .lead-loss__card {
    gap: 110px;
    padding: 22px 22px 28px;
  }
  .lead-loss__nav-btn {
    width: 56px;
    height: 56px;
  }
  .lead-loss__nav-btn svg {
    width: 13px;
    height: 22px;
  }
}
@media (max-width: 1280px) {
  .lead-loss__container {
    padding: 44px 0;
  }
  .lead-loss__header {
    padding: 0 18px;
  }
  .lead-loss__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .lead-loss__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
    margin-top: 12px;
  }
  .lead-loss .swiper-wrapper {
    margin: 44px 0;
  }
  .lead-loss__slider {
    padding: 0 16px 70px;
  }
  .lead-loss__card {
    gap: 86px;
    padding: 20px 20px 24px;
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .lead-loss__card img {
    width: 64px;
    height: 64px;
  }
  .lead-loss__nav {
    margin-top: 20px;
  }
  .lead-loss__nav-btn {
    width: 52px;
    height: 52px;
  }
  .lead-loss__card-content {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
  }
}
@media (max-width: 1024px) {
  .lead-loss__container {
    padding: 38px 0;
  }
  .lead-loss__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .lead-loss__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .lead-loss__slider {
    padding: 0 14px 64px;
  }
  .lead-loss .swiper-wrapper {
    margin: 36px 0;
  }
  .lead-loss__card {
    gap: 64px;
    padding: 18px 18px 22px;
  }
  .lead-loss__card img {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 768px) {
  .lead-loss__container {
    padding: 32px 0;
  }
  .lead-loss__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .lead-loss__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0em;
    font-style: normal;
    margin-top: 10px;
  }
  .lead-loss__slider {
    padding: 0 12px 56px;
  }
  .lead-loss .swiper-wrapper {
    margin: 28px 0;
  }
  .lead-loss__card {
    gap: 44px;
    padding: 16px 16px 20px;
  }
  .lead-loss__card img {
    width: 52px;
    height: 52px;
  }
  .lead-loss__nav {
    margin-top: 16px;
    gap: 12px;
  }
  .lead-loss__nav-btn {
    width: 44px;
    height: 44px;
  }
  .lead-loss__nav-btn svg {
    width: 12px;
    height: 20px;
  }
}
@media (max-width: 640px) {
  .lead-loss__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .lead-loss__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .lead-loss__slider {
    padding: 0 10px 48px;
  }
  .lead-loss__card {
    gap: 32px;
    border-radius: 14px;
    padding: 14px 14px 18px;
  }
  .lead-loss__card svg {
    width: 48px;
    height: 48px;
  }
  .lead-loss__card-content {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
  }
}
@media (max-width: 480px) {
  .lead-loss__container {
    padding: 28px 0;
  }
  .lead-loss__header {
    padding: 0 12px;
  }
  .lead-loss__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .lead-loss__slider {
    padding: 0 8px 44px;
  }
  .lead-loss__nav-btn {
    width: 40px;
    height: 40px;
  }
  .lead-loss__card-content {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0em;
    font-style: normal;
  }
}

.audit-benefits {
  margin-top: 16px;
}
.audit-benefits__container {
  border-radius: 24px;
  background: #f5f5f4;
}
.audit-benefits__container {
  padding: 80px;
}
.audit-benefits__header {
  text-align: center;
  margin-bottom: 72px;
}
.audit-benefits__title {
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0em;
  font-style: normal;
  margin-bottom: 16px;
  padding: 18px 24px;
}
.audit-benefits__subtitle {
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0em;
  font-style: normal;
  color: rgb(126, 134, 149);
  white-space: nowrap;
  margin: 0 auto;
}
.audit-benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 19px;
}
.audit-benefits__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: 10px;
  background: #fafafa;
  text-align: center;
  width: 100%;
  aspect-ratio: 562/584;
  padding: 0 47px;
  padding-bottom: 34px;
}
.audit-benefits__card-p {
  padding: 0 !important;
}
.audit-benefits__card-content {
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0em;
  font-style: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #828282;
  min-height: 96px;
}
.audit-benefits__card-title {
  color: rgb(33, 33, 33);
}
.audit-benefits__card-desc {
  color: #828282;
}
@media (max-width: 1536px) {
  .audit-benefits__container {
    padding: 64px;
  }
  .audit-benefits__header {
    margin-bottom: 56px;
  }
  .audit-benefits__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 52px;
    letter-spacing: 0em;
    font-style: normal;
    margin-bottom: 12px;
  }
  .audit-benefits__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-benefits__grid {
    gap: 16px;
  }
  .audit-benefits__card-content {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
    min-height: 84px;
  }
}
@media (max-width: 1280px) {
  .audit-benefits__container {
    padding: 52px;
  }
  .audit-benefits__header {
    margin-bottom: 44px;
  }
  .audit-benefits__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-benefits__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-benefits__card {
    padding-bottom: 30px;
  }
  .audit-benefits__card-content {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
  }
}
@media (max-width: 1024px) {
  .audit-benefits__container {
    padding: 40px;
  }
  .audit-benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .audit-benefits__header {
    margin-bottom: 32px;
  }
  .audit-benefits__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-benefits__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
    margin: 0 auto;
    white-space: wrap;
  }
  .audit-benefits__card {
    padding-bottom: 26px;
  }
  .audit-benefits__card-content {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
  }
}
@media (max-width: 768px) {
  .audit-benefits__container {
    padding: 28px 18px;
  }
  .audit-benefits__header {
    margin-bottom: 24px;
  }
  .audit-benefits__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-benefits__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-benefits__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .audit-benefits__card {
    width: 80%;
    padding-bottom: 22px;
  }
  .audit-benefits__card-content {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
  }
}
@media (max-width: 640px) {
  .audit-benefits__container {
    padding: 24px 14px;
  }
  .audit-benefits__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-benefits__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
    max-width: 92%;
  }
  .audit-benefits__card {
    padding-bottom: 18px;
  }
  .audit-benefits__card-content {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
    min-height: 60px;
  }
}
@media (max-width: 480px) {
  .audit-benefits__container {
    padding: 20px 12px;
  }
  .audit-benefits__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-benefits__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
    font-style: normal;
    max-width: 100%;
  }
  .audit-benefits__card {
    padding-bottom: 14px;
  }
  .audit-benefits__card-content {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
    font-style: normal;
    bottom: 8px;
  }
  .audit-benefits__card-desc {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-benefits__card-content {
    right: 12px;
    left: 12px;
  }
}

.audit-cta {
  margin-top: 16px;
}
.audit-cta__container {
  padding: 195px 356px;
  border-radius: 24px;
  position: relative;
}
.audit-cta__content {
  text-align: center;
}
.audit-cta__title {
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: 0em;
  font-style: normal;
  margin-bottom: 24px;
}
.audit-cta__subtitle {
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0em;
  font-style: normal;
  color: rgb(126, 134, 149);
  margin-bottom: 40px;
}
.audit-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  border-radius: 100px;
  background: rgb(245, 126, 32);
  color: rgb(255, 255, 255);
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0em;
  font-style: normal;
}
.audit-cta__decor {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.audit-cta__decor--tl {
  top: 57px;
  left: 117px;
}
.audit-cta__decor--tr {
  top: 57px;
  right: 151px;
}
.audit-cta__decor--bl {
  bottom: 227px;
  left: 117px;
}
.audit-cta__decor--br {
  bottom: 227px;
  right: 151px;
}
.audit-cta__avatar {
  position: relative;
  width: 96px;
  height: 96px;
  aspect-ratio: 1/1;
  border-radius: 96px;
}
.audit-cta__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.audit-cta__bubble {
  display: inline-flex;
  padding: 10px 18px;
  justify-content: center;
  align-items: center;
  color: rgb(245, 126, 32);
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0em;
  font-style: normal;
  border-radius: 24px;
  background: rgba(255, 139, 31, 0.1);
  white-space: nowrap;
}
.audit-cta__bubble-tl {
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translate(-13%, -65%);
}
.audit-cta__bubble-br {
  position: absolute;
  top: 0;
  right: 100%;
  transform: translate(13%, -50%);
}
@media (max-width: 1536px) {
  .audit-cta__container {
    padding: 160px 220px;
  }
  .audit-cta__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0em;
    font-style: normal;
    margin-bottom: 18px;
  }
  .audit-cta__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
    margin-bottom: 28px;
  }
  .audit-cta__avatar {
    width: 84px;
    height: 84px;
  }
  .audit-cta__bubble {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
    padding: 8px 14px;
  }
  .audit-cta__decor {
    gap: 8px;
  }
  .audit-cta__decor--tl {
    top: 44px;
    left: 70px;
  }
  .audit-cta__decor--tr {
    top: 44px;
    right: 80px;
  }
  .audit-cta__decor--bl {
    bottom: 160px;
    left: 70px;
  }
  .audit-cta__decor--br {
    bottom: 160px;
    right: 80px;
  }
}
@media (max-width: 1280px) {
  .audit-cta__container {
    padding: 120px 140px;
  }
  .audit-cta__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-cta__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0em;
    font-style: normal;
    margin-bottom: 24px;
  }
  .audit-cta__btn {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
    padding: 12px 36px;
  }
  .audit-cta__avatar {
    width: 72px;
    height: 72px;
  }
  .audit-cta__bubble {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
    font-style: normal;
    padding: 8px 12px;
  }
  .audit-cta__decor--tl {
    top: 36px;
    left: 44px;
  }
  .audit-cta__decor--tr {
    top: 40px;
    right: 30px;
  }
  .audit-cta__decor--bl {
    bottom: 130px;
    left: 44px;
  }
  .audit-cta__decor--br {
    bottom: 130px;
    right: 30px;
  }
}
@media (max-width: 1024px) {
  .audit-cta__container {
    padding: 90px 48px;
  }
  .audit-cta__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-cta__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-cta__avatar {
    width: 60px;
    height: 60px;
  }
  .audit-cta__bubble {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
    font-style: normal;
    padding: 8px 10px;
  }
  .audit-cta__decor {
    display: none;
  }
}
@media (max-width: 768px) {
  .audit-cta__container {
    padding: 64px 18px;
  }
  .audit-cta__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0em;
    font-style: normal;
    margin-bottom: 14px;
    max-width: 100%;
  }
  .audit-cta__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
    font-style: normal;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .audit-cta__btn {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
    padding: 12px 28px;
    width: 100%;
    max-width: 360px;
  }
}
@media (max-width: 640px) {
  .audit-cta__container {
    padding: 52x 14px;
  }
  .audit-cta__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-cta__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-cta__btn {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
    font-style: normal;
  }
}
@media (max-width: 480px) {
  .audit-cta__container {
    padding: 44px 12px;
  }
  .audit-cta__title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-cta__subtitle {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .audit-cta__btn {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
    padding: 12px 18px;
  }
}

.footer {
  margin-top: 16px;
  color: rgb(255, 255, 255);
}
.footer .container-fluid {
  background-color: rgb(27, 27, 27);
  border-radius: 24px;
  padding: 72px 80px 24px 80px;
}
.footer__header {
  margin-bottom: 30px;
}
.footer__nav li a {
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0em;
  font-style: normal;
}
.footer__nav {
  display: flex;
  gap: 48px;
}
.footer__content {
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 5.8fr 5.8fr 0.4fr;
}
.footer__head {
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__office {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.footer__contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.footer__head-title {
  margin-bottom: 22px;
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0em;
  font-style: normal;
}
.footer__sub-title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0em;
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
}
.footer__desc {
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0em;
  font-style: normal;
}
.footer__nav a {
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
}
.footer__nav a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer__brand {
  padding-left: 51px;
  padding-right: 19px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__social {
  padding-left: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
}
.footer__social-p {
  width: 48px;
  height: 48px;
}
.footer__copyright {
  margin-top: 19px;
  text-align: end;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0em;
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1536px) {
  .footer .container-fluid {
    padding: 64px 56px 22px;
  }
  .footer__nav {
    gap: 36px;
  }
  .footer__office {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 1280px) {
  .footer .container-fluid {
    padding: 56px 40px 20px;
  }
  .footer__nav {
    gap: 28px;
  }
  .footer__nav li a {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer__head {
    padding-right: 24px;
  }
  .footer__brand {
    padding-left: 24px;
    padding-right: 0;
    border-right: none;
  }
  .footer__social {
    grid-column: 1/-1;
    padding-left: 0;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .footer .container-fluid {
    padding: 44px 28px 18px;
  }
  .footer__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer__nav {
    flex-wrap: wrap;
    gap: 18px 22px;
  }
  .footer__nav li a {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .footer__content {
    padding: 28px 0;
    gap: 22px;
  }
  .footer__head {
    padding-right: 20px;
  }
  .footer__brand {
    padding-left: 20px;
  }
  .footer__social {
    justify-content: flex-start;
    gap: 14px;
  }
  .footer__social-p {
    padding: 6px;
  }
  .footer__social-p svg {
    width: 28px;
    height: 28px;
  }
  .footer__copyright {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .footer .container-fluid {
    padding: 32px 18px 16px;
  }
  .footer__content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer__head {
    border-right: none;
    padding-right: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer__brand {
    padding-left: 0;
    padding-right: 0;
    border-right: none;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer__social {
    padding-left: 0;
    justify-content: flex-start;
  }
  .footer__head-title {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
    font-style: normal;
    margin-bottom: 14px;
  }
  .footer__copyright {
    margin-top: 14px;
    text-align: left;
    font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
    font-style: normal;
  }
}
@media (max-width: 640px) {
  .footer .container-fluid {
    padding: 28px 14px 14px;
  }
  .footer__nav li a {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .footer__desc {
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
    font-style: normal;
  }
  .footer__social-p svg {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 480px) {
  .footer .container-fluid {
    padding: 24px 12px 12px;
  }
  .footer__nav {
    gap: 12px 16px;
  }
  .footer__social {
    gap: 12px;
  }
}

/*# sourceMappingURL=main.css.map */
