@charset "UTF-8";
@font-face {
  font-family: "Cal Sans";
  src: url("Assets/Cal_Sans/CalSans-Regular.woff2") format("woff2"), url("Assets/Cal_Sans/CalSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("Assets/Inter/static/Inter24pt-Light.woff2") format("woff2"), url("Assets/Inter/static/Inter24pt-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("Assets/Inter/static/Inter24pt-Medium.woff2") format("woff2"), url("Assets/Inter/static/Inter24pt-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("Assets/Inter/static/Inter24pt-SemiBold.woff2") format("woff2"), url("Assets/Inter/static/Inter24pt-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 300;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

.container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 80px;
  padding-right: 80px;
  width: 100%;
  gap: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1200px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 1024px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 80px;
    padding-bottom: 80px;
    gap: 20px;
  }
}
.heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.heading .title {
  font-size: 40px;
  font-family: "Cal Sans", sans-serif;
  font-weight: 600;
  text-align: left;
  margin: 0;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.heading .desc {
  color: rgba(2, 2, 2, 0.8);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  text-align: left;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.heading .desc .desc-highlight {
  font-weight: 500;
  color: #222;
}
.heading .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.heading .category .label-line {
  height: 1px;
  width: 24px;
  background: rgba(2, 2, 2, 0.4);
}
.heading .category .label {
  color: rgba(2, 2, 2, 0.4);
  font-size: 14px;
  font-family: "Inter";
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.heading.centered-desktop {
  align-items: center;
  text-align: center;
}
.heading.centered-desktop .title {
  text-align: left;
  align-items: center;
}
.heading.centered-desktop .title .subtitle {
  text-align: left;
}
.heading.centered-desktop .desc {
  text-align: center;
  align-items: center;
}
.heading.centered-desktop .category {
  justify-content: center;
}

@media (max-width: 1024px) {
  .heading {
    align-items: flex-start;
  }
  .heading .title {
    text-align: left;
    align-items: flex-start;
  }
  .heading .title .subtitle {
    text-align: left;
  }
  .heading .desc {
    text-align: left;
    align-items: flex-start;
    font-size: 16px;
  }
  .heading.centered-desktop {
    align-items: flex-start;
    text-align: left;
  }
  .heading.centered-desktop .title {
    text-align: left;
    align-items: flex-start;
  }
  .heading.centered-desktop .desc {
    text-align: left;
    align-items: flex-start;
  }
  .heading.centered-desktop .category {
    justify-content: flex-start;
  }
}
@media (max-width: 700px) {
  .heading {
    align-items: flex-start;
  }
  .heading .title {
    text-align: left;
    align-items: flex-start;
  }
  .heading .title .subtitle {
    text-align: left;
  }
  .heading .desc {
    text-align: left;
    align-items: flex-start;
    font-size: 16px;
  }
  .heading.centered-desktop {
    align-items: flex-start;
    text-align: left;
  }
  .heading.centered-desktop .title {
    text-align: left;
    align-items: flex-start;
  }
  .heading.centered-desktop .desc {
    text-align: left;
    align-items: flex-start;
  }
  .heading.centered-desktop .category {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .heading {
    gap: 16px;
  }
  .heading .title {
    font-size: clamp(28px, 4vw, 36px);
  }
  .heading .desc {
    font-size: 16px;
    max-width: 100%;
  }
  .heading .category .label {
    font-size: 12px;
  }
  .heading .category .label-line {
    width: 20px;
  }
  .heading.centered-desktop {
    align-items: flex-start;
    text-align: left;
  }
  .heading.centered-desktop .title {
    text-align: left;
    align-items: flex-start;
  }
  .heading.centered-desktop .desc {
    text-align: left;
    align-items: flex-start;
  }
  .heading.centered-desktop .category {
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .heading {
    gap: 12px;
  }
  .heading .title {
    font-size: clamp(28px, 5vw, 28px);
  }
  .heading .desc {
    font-size: 16px;
  }
  .heading.centered-desktop {
    align-items: flex-start;
    text-align: left;
  }
  .heading.centered-desktop .title {
    text-align: left;
    align-items: flex-start;
  }
  .heading.centered-desktop .desc {
    text-align: left;
    align-items: flex-start;
  }
  .heading.centered-desktop .category {
    justify-content: flex-start;
  }
}
.black-section .heading.left {
  color: #fff;
}
.black-section .heading.left .category .label-line {
  background: rgba(255, 255, 255, 0.52);
}
.black-section .heading.left .category .label {
  color: rgba(255, 255, 255, 0.52);
}
.black-section .heading.left .title {
  color: #fff;
}
.black-section .heading.left .desc {
  color: rgba(255, 255, 255, 0.8);
}
.black-section .heading.left .desc .desc-highlight {
  color: #fff;
}

.heading.left {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}
.heading.left .heading-col1 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.heading.left .title {
  align-items: flex-start;
  text-align: left;
}
.heading.left .desc {
  align-items: flex-start;
  text-align: left;
  width: 50%;
}

@media (max-width: 1024px) {
  .heading.left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .heading.left .desc {
    width: 100%;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .heading.left {
    gap: 12px;
  }
  .heading.left .heading-col1 {
    gap: 8px;
  }
}
.section-title {
  font-size: 40px;
  font-family: "Cal Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.section-desc {
  color: rgba(2, 2, 2, 0.8);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  text-align: center;
  margin: 0;
}

#pain {
  background: #000;
  color: #fff;
  border-radius: 0;
  margin: 0 auto 0 auto;
  position: relative;
  z-index: 1;
}
#pain .pain-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 48px auto;
  padding: 0 32px;
  gap: 32px;
}
#pain .pain-title-block {
  flex: 1 1 50%;
  min-width: 320px;
}
#pain .pain-label {
  color: #888;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}
#pain .pain-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}
#pain .pain-subtitle {
  color: #fafafa;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}
#pain .pain-intro {
  flex: 1 1 50%;
  color: #fafafa;
  font-size: 1.1rem;
  text-align: right;
  margin-top: 12px;
  min-width: 320px;
  max-width: 640px;
  font-family: "Inter";
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}
#pain .pain-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
#pain .pain-card {
  background: #181818;
  border: 1.5px solid #fff;
  border-radius: 24px;
  padding: 32px 24px 0 24px;
  color: #fff;
  width: 100%;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  box-sizing: border-box;
  min-height: 320px;
  position: relative;
}
#pain .pain-icon {
  width: 36px;
  height: 36px;
  background: #222;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  color: #fff;
}
#pain .pain-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
#pain .pain-card-desc {
  color: #fafafa;
  font-size: 1rem;
  margin-bottom: 32px;
}
#pain .pain-card-action {
  background: linear-gradient(90deg, #232323 0%, #222 100%);
  border-radius: 0 0 20px 20px;
  padding: 18px 20px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: -2px;
  margin-top: auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
#pain .pain-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
#pain .pain-header-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
#pain .pain-titles {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
#pain .pain-title-main {
  color: #fff;
  font-size: 32px;
  font-family: "Cal Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  line-height: 1.1;
}
#pain .pain-title-sub {
  color: rgba(255, 255, 255, 0.52);
  font-size: 32px;
  font-family: "Cal Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  line-height: 1.1;
}
#pain .pain-intro-white {
  color: #fff;
  font-weight: 500;
}
#pain .pain-intro-grey {
  color: rgba(255, 255, 255, 0.8);
}
#pain .pain-cards-flex {
  display: flex;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}
#pain .pain-card-v2 {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(100% 50% at 0% 100%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(100% 50% at 100% 0%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, 0.16);
  width: 445px;
  max-width: 100%;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}
#pain .pain-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background-color: rgba(2, 2, 2, 0.01);
  box-shadow: inset 0 0 12px #000;
  pointer-events: none;
  z-index: 0;
}
#pain .top-content {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  border-radius: 24px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 100%), #000;
}
#pain .badge-icon {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(100% 50% at 0% 100%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(100% 50% at 100% 0%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, 0.04);
  display: flex;
  padding: 8px;
  align-items: center;
  gap: 10px;
}
#pain .icon-background {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}
#pain .icon-placeholder {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1.5px solid #fff;
  background: transparent;
}
#pain .text-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
#pain .subheading {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
#pain .description {
  color: #fafafa;
  font-size: 16px;
  font-weight: 400;
}
#pain .cta-container {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  height: 100%;
}
#pain .call-to-action {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
}
#pain .top-bg {
  position: absolute;
  inset: 0px;
  border-radius: 24px;
  background: rgba(2, 2, 2, 0.01);
  box-shadow: 0px 0px 12px 0px #000 inset;
}

@media (min-width: 1025px) {
  .pain-card-v2 {
    flex: 1 1 33%;
  }
}
@media (max-width: 1024px) {
  .pain-cards-flex {
    gap: 20px;
    margin-top: 32px;
  }
  .pain-cards-flex .pain-card-v2 {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .pain-header {
    flex-direction: column;
    gap: 24px;
    padding: 0 24px;
    margin-bottom: 40px;
  }
  .pain-header .pain-title-block,
  .pain-header .pain-intro {
    flex: none;
    min-width: auto;
    text-align: left;
  }
  .pain-header .pain-title-main,
  .pain-header .pain-title-sub {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .pain-cards-flex {
    gap: 16px;
  }
  .pain-card-v2 {
    border-radius: 16px;
    min-height: 200px;
  }
  .pain-card-v2 .top-content {
    padding: 20px;
    gap: 12px;
  }
  .pain-card-v2 .badge-icon {
    padding: 6px;
  }
  .pain-card-v2 .badge-icon .icon-placeholder {
    width: 24px;
    height: 24px;
  }
  .pain-card-v2 .subheading {
    font-size: 18px !important;
    line-height: 1.3;
  }
  .pain-card-v2 .description {
    font-size: 14px;
    line-height: 1.4;
  }
  .pain-card-v2 .cta-container {
    padding: 12px 20px;
    min-height: 48px;
  }
  .pain-card-v2 .call-to-action {
    font-size: 14px;
  }
  .pain-header {
    padding: 0 16px;
    margin-bottom: 32px;
  }
  .pain-header .pain-title-main,
  .pain-header .pain-title-sub {
    font-size: 24px;
  }
  .pain-header .pain-intro {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .pain-cards-flex {
    gap: 12px;
  }
  .pain-card-v2 {
    border-radius: 12px;
    min-height: 180px;
  }
  .pain-card-v2 .top-content {
    padding: 16px;
    gap: 10px;
  }
  .pain-card-v2 .badge-icon {
    padding: 5px;
  }
  .pain-card-v2 .badge-icon .icon-placeholder {
    width: 20px;
    height: 20px;
  }
  .pain-card-v2 .subheading {
    font-size: 18px !important;
    line-height: 1.2;
  }
  .pain-card-v2 .description {
    font-size: 13px;
    line-height: 1.4;
  }
  .pain-card-v2 .cta-container {
    padding: 10px 16px;
    min-height: 44px;
  }
  .pain-card-v2 .call-to-action {
    font-size: 13px;
  }
  .pain-header {
    padding: 0 12px;
    margin-bottom: 24px;
  }
  .pain-header .pain-title-main,
  .pain-header .pain-title-sub {
    font-size: 20px;
  }
  .pain-header .pain-intro {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 360px) {
  .pain-cards-flex {
    gap: 10px;
  }
  .pain-card-v2 {
    border-radius: 10px;
    min-height: 160px;
  }
  .pain-card-v2 .top-content {
    padding: 14px;
    gap: 8px;
  }
  .pain-card-v2 .badge-icon {
    padding: 4px;
  }
  .pain-card-v2 .badge-icon .icon-placeholder {
    width: 18px;
    height: 18px;
  }
  .pain-card-v2 .subheading {
    font-size: 16px !important;
    line-height: 1.2;
  }
  .pain-card-v2 .description {
    font-size: 12px;
    line-height: 1.4;
  }
  .pain-card-v2 .cta-container {
    padding: 8px 14px;
    min-height: 40px;
  }
  .pain-card-v2 .call-to-action {
    font-size: 12px;
  }
  .pain-header {
    padding: 0 8px;
    margin-bottom: 20px;
  }
  .pain-header .pain-title-main,
  .pain-header .pain-title-sub {
    font-size: 18px;
  }
  .pain-header .pain-intro {
    font-size: 13px;
    line-height: 1.5;
  }
}
#services {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  color: #222;
  width: 100vw;
  z-index: 10;
  border-radius: 80px 80px 0 0;
}
#services .container {
  position: relative;
}
#services .services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 655px;
}
#services .services-header .label-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
#services .services-header .label-wrapper .label-line {
  width: 24px;
  height: 1px;
  background: rgba(2, 2, 2, 0.4);
}
#services .services-header .label-wrapper .label {
  color: rgba(2, 2, 2, 0.4);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
#services .services-header .title {
  font-family: "Cal Sans", sans-serif;
  font-size: 32px;
  line-height: 1.3;
}
#services .services-header .title .subtitle {
  color: rgba(2, 2, 2, 0.4);
  display: block;
}
#services .services-header .desc {
  color: rgba(2, 2, 2, 0.8);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}
#services .services-header .desc strong {
  color: #222;
  font-weight: 500;
}
#services .services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
#services .services-tags .tag {
  background: #fff;
  border: 1px dashed rgba(2, 2, 2, 0.12);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #222;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
#services .services-tags .tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgb(255, 255, 255), transparent);
  transition: left 0.25s ease;
}
#services .services-tags .tag.active {
  border: 1px solid #222;
  background: rgb(255, 255, 255);
}
#services .services-tags .tag.active::before {
  animation: shimmer 1.5s infinite;
}
#services .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
}
#services .services-grid .service-card {
  background: #fff;
  border: 1px solid rgba(2, 2, 2, 0.12);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
#services .services-grid .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(2, 2, 2, 0.08);
}
#services .services-grid .service-card .card-content {
  height: 240px;
  position: relative;
  overflow: hidden;
}
#services .services-grid .service-card .card-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#services .services-grid .service-card .card-footer {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#services .services-grid .service-card .card-footer .title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #222;
  margin: 0;
}
#services .services-grid .service-card .card-footer .desc {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(2, 2, 2, 0.8);
  margin: 0;
}
#services .services-grid .service-card .card-footer .card-tags {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
#services .services-grid .service-card .card-footer .card-tags .tag {
  background: #fff;
  border: 1px dashed rgba(2, 2, 2, 0.12);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
  font-family: "Inter", sans-serif;
  color: #222;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
#services .services-grid .service-card .card-footer .card-tags .tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgb(255, 255, 255), transparent);
  transition: left 0.25s ease;
}
#services .services-grid .service-card .card-footer .card-tags .tag:hover {
  border: 1px solid #222;
  background: rgb(255, 255, 255);
}
#services .services-grid .service-card .card-footer .card-tags .tag:hover::before {
  animation: shimmer 1.5s infinite;
}
#services .services-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
#services .services-footer .footer-text {
  color: rgba(2, 2, 2, 0.8);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}
#services .services-footer .footer-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
}
#services .services-footer .footer-tags .tag {
  background: #fff;
  border: 1px dashed rgba(2, 2, 2, 0.12);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #222;
}

@keyframes shimmer {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: 200%;
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  #services .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  #services .service-card .card-content {
    height: 200px;
  }
  #services .service-card .card-footer {
    padding: 20px;
  }
  #services .service-card .card-footer .title {
    font-size: 16px;
  }
  #services .service-card .card-footer .desc {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  #services {
    border-radius: 40px 40px 0 0;
  }
  #services .services-tags {
    display: none;
  }
  #services .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  #services .service-card {
    border-radius: 16px;
  }
  #services .service-card .card-content {
    height: 160px;
  }
  #services .service-card .card-footer {
    padding: 16px;
    gap: 8px;
  }
  #services .service-card .card-footer .title {
    font-size: 15px;
  }
  #services .service-card .card-footer .desc {
    font-size: 14px;
    line-height: 1.4;
  }
  #services .service-card .card-footer .card-tags {
    display: flex;
    margin-top: 8px;
  }
  #services .service-card .card-footer .card-tags .tag {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
  }
  #services .services-footer {
    gap: 16px;
  }
  #services .services-footer .footer-text {
    font-size: 15px;
    text-align: center;
  }
  #services .services-footer .footer-tags {
    flex-wrap: wrap;
  }
  #services .services-footer .footer-tags .tag {
    padding: 6px 12px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  #services {
    border-radius: 24px 24px 0 0;
  }
  #services .services-tags {
    display: none;
  }
  #services .services-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  #services .service-card {
    border-radius: 12px;
  }
  #services .service-card:hover {
    transform: translateY(-2px);
  }
  #services .service-card .card-content {
    height: 140px;
  }
  #services .service-card .card-footer {
    padding: 12px;
    gap: 6px;
  }
  #services .service-card .card-footer .title {
    font-size: 14px;
  }
  #services .service-card .card-footer .desc {
    font-size: 13px;
    line-height: 1.3;
  }
  #services .service-card .card-footer .card-tags {
    margin-top: 6px;
  }
  #services .service-card .card-footer .card-tags .tag {
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 4px;
  }
  #services .services-footer {
    gap: 12px;
  }
  #services .services-footer .footer-text {
    font-size: 14px;
  }
  #services .services-footer .footer-tags {
    justify-content: center;
  }
  #services .services-footer .footer-tags .tag {
    padding: 4px 8px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  #services .services-tags .tag {
    padding: 3px 6px;
    font-size: 12px;
  }
  #services .service-card .card-content {
    height: 120px;
  }
  #services .service-card .card-footer {
    padding: 10px;
  }
  #services .service-card .card-footer .title {
    font-size: 13px;
  }
  #services .service-card .card-footer .desc {
    font-size: 12px;
  }
}
#method {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  width: 100vw;
}
#method .heading .title {
  color: #222;
}
#method .heading .desc {
  color: rgba(2, 2, 2, 0.8);
}
#method .heading .category .label {
  color: rgba(2, 2, 2, 0.4);
}
#method .heading .category .label-line {
  background: rgba(2, 2, 2, 0.4);
}
#method .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.step-img-wrapper svg {
  width: 100%;
  height: auto;
}
.step-img-wrapper .bg-rect,
.step-img-wrapper .icon,
.step-img-wrapper .text-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.step-img-wrapper.active .bg-rect,
.step-img-wrapper.active .icon,
.step-img-wrapper.active .text-content {
  opacity: 1;
  transform: translateY(0);
}

.step-row {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.step-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-img-wrapper,
.step-row {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.step-1-waves {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 106px;
  background: #fff;
  border-radius: 24px;
}
.step-1-waves .avatar {
  width: 52px;
  height: 52px;
  border-radius: 40px;
  background: radial-gradient(ellipse 50% 100% at 0% 100%, rgba(2, 2, 2, 0.08) 0%, rgba(2, 2, 2, 0) 100%), radial-gradient(ellipse 50% 100% at 100% 0%, rgba(2, 2, 2, 0.08) 0%, rgba(2, 2, 2, 0) 100%), rgba(2, 2, 2, 0.04);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(2, 2, 2, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #222;
}
.step-1-waves .avatar img {
  width: 24px;
  height: 24px;
}
.step-1-waves .phone-icon {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
  opacity: 1;
  filter: invert(13%) sepia(0%) saturate(0%) hue-rotate(231deg) brightness(95%) contrast(91%);
}
.step-1-waves .waves-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.step-1-waves .wave {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 8px solid rgba(2, 2, 2, 0.08);
  filter: blur(8px);
  border-radius: 50%;
  animation: wave-animation 6s infinite cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.step-1-waves .wave:nth-child(1) {
  animation-delay: 0s;
}
.step-1-waves .wave:nth-child(2) {
  animation-delay: 2s;
}
.step-1-waves .wave:nth-child(3) {
  animation-delay: 4s;
}

@keyframes wave-animation {
  0% {
    width: 80px;
    height: 80px;
    opacity: 0;
  }
  33% {
    width: 100px;
    height: 100px;
    opacity: 1;
  }
  100% {
    width: 400px;
    height: 400px;
    opacity: 0;
  }
}
.steps-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
  min-height: 140px;
  gap: 80px;
}

.step-img-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  height: 160px;
}

.step-img-wrapper {
  width: 100%;
  background: #fff;
  border-radius: 24px;
  border: 1px rgba(2, 2, 2, 0.12) solid;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.step-img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.step-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: 24px 0;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto 0;
}

.step-row-final {
  display: flex;
  justify-content: center;
}
.step-row-final:last-child .timeline-line {
  height: 80px;
  background: linear-gradient(180deg, rgba(2, 2, 2, 0.24) 0%, #222 100%);
  margin-left: 1px;
}
.step-row-final:last-child .step-text-col {
  align-items: center;
}

.step-title {
  color: #222;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.step-desc {
  color: rgba(2, 2, 2, 0.8);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}

.timeline-center {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  gap: 8px;
}

.timeline-line {
  width: 1px;
  height: 100%;
  background: rgba(2, 2, 2, 0.24);
}

.timeline-badge {
  width: 24px;
  height: 24px;
  background: radial-gradient(ellipse 50% 100% at 0% 100%, rgba(2, 2, 2, 0.08) 0%, rgba(2, 2, 2, 0) 100%), radial-gradient(ellipse 50% 100% at 100% 0%, rgba(2, 2, 2, 0.08) 0%, rgba(2, 2, 2, 0) 100%), rgba(2, 2, 2, 0.04);
  border-radius: 8px;
  border: 1px solid #222;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222;
  font-size: 14px;
  font-family: "Inter", "Mona Sans", sans-serif;
  font-weight: 500;
  aspect-ratio: 1;
}

.step-2-list {
  position: absolute;
  top: 24px;
  width: 60%;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(2, 2, 2, 0.12);
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step-2-list .list-item {
  width: auto;
  height: 32px;
  padding: 4px 8px 4px 4px;
  border-radius: 8px;
  border: 1px solid rgba(2, 2, 2, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  background: #fff;
}
.step-2-list .list-item .menu-icon {
  width: 24px;
  height: 24px;
  opacity: 0.64;
  filter: invert(13%) sepia(0%) saturate(0%) hue-rotate(231deg) brightness(95%) contrast(91%);
}
.step-2-list .list-item .item-text {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(2, 2, 2, 0.64);
  line-height: normal;
}
.step-2-list .list-item .checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(2, 2, 2, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-2-list .list-item .checkbox .check-icon {
  width: 12px;
  height: 12px;
  opacity: 0.64;
  filter: invert(13%) sepia(0%) saturate(0%) hue-rotate(231deg) brightness(95%) contrast(91%);
}
.step-2-list .list-item.completed {
  opacity: 0.4;
}
.step-2-list .list-item.completed .item-text {
  text-decoration: line-through;
}
.step-2-list .list-item.completed .checkbox {
  background: #fff;
  border-color: #fff;
}
.step-2-list .list-item.flying {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 100%;
  transform: rotate(-4deg);
  border-color: rgba(2, 2, 2, 0.12);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.12);
  background: radial-gradient(ellipse 50% 100% at 0% 100%, rgba(2, 2, 2, 0.08) 0%, rgba(2, 2, 2, 0) 100%), radial-gradient(ellipse 50% 100% at 100% 0%, rgba(2, 2, 2, 0.08) 0%, rgba(2, 2, 2, 0) 100%), rgb(255, 255, 255);
  animation: float 3s ease-in-out infinite;
}
.step-2-list .list-item.flying .item-text {
  color: #222;
}

@keyframes float {
  0%, 100% {
    transform: rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(-8px);
  }
}
.step-3-chat {
  width: 341px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-3-chat .chat-messages {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step-3-chat .message {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(2, 2, 2, 0.12);
  max-width: 80%;
}
.step-3-chat .message.from-them {
  align-self: flex-start;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-right: 80px;
}
.step-3-chat .message.from-me {
  align-self: flex-end;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  margin-left: 80px;
}
.step-3-chat .message .avatar {
  width: 20px;
  height: 20px;
  border-radius: 12.308px;
  background: radial-gradient(ellipse 50% 100% at 0% 100%, rgba(2, 2, 2, 0.08) 0%, rgba(2, 2, 2, 0) 100%), radial-gradient(ellipse 50% 100% at 100% 0%, rgba(2, 2, 2, 0.08) 0%, rgba(2, 2, 2, 0) 100%), rgba(2, 2, 2, 0.04);
  -webkit-backdrop-filter: blur(1.231px);
          backdrop-filter: blur(1.231px);
  border: 0.308px solid rgba(2, 2, 2, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #222;
  flex-shrink: 0;
}
.step-3-chat .message .avatar img {
  width: 12px;
  height: 12px;
}
.step-3-chat .message .message-text {
  font-size: 10px;
  font-family: "Inter", sans-serif;
  color: #222;
}
.step-3-chat .message .link-button {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #222;
  text-decoration: underline;
}
.step-3-chat .message .link-button .arrow-icon {
  width: 12px;
  height: 12px;
  opacity: 0.64;
}
.step-3-chat .message.appearing {
  opacity: 0;
  transform: translateY(10px);
  animation: messageAppear 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.5s;
}
.step-3-chat .message.typing .typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
}
.step-3-chat .message.typing .typing-indicator span {
  width: 4px;
  height: 4px;
  background: rgba(2, 2, 2, 0.4);
  border-radius: 50%;
  display: inline-block;
  animation: typingBounce 1.4s infinite ease-in-out;
}
.step-3-chat .message.typing .typing-indicator span:nth-child(1) {
  animation-delay: 0s;
}
.step-3-chat .message.typing .typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}
.step-3-chat .message.typing .typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

.space-shuttle-icon {
  width: 20px;
  height: 20px;
}

@keyframes messageAppear {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-4px);
  }
}
@media (max-width: 1200px) {
  #method .container {
    padding: 100px 60px;
  }
  .step-row {
    gap: 60px;
  }
  .step-row .step-img-col,
  .step-row .step-text-col {
    padding: 20px 0;
  }
  .step-img-wrapper {
    height: 140px;
  }
  .step-2-list {
    width: 70%;
  }
  .step-3-chat {
    width: 300px;
  }
}
@media (max-width: 1024px) {
  #method .container {
    padding: 80px 40px;
  }
  #method .heading .title {
    color: #222;
  }
  #method .heading .desc {
    color: rgba(2, 2, 2, 0.8);
  }
  #method .heading .category .label {
    color: rgba(2, 2, 2, 0.4);
  }
  #method .heading .category .label-line {
    background: rgba(2, 2, 2, 0.4);
  }
  .step-row {
    gap: 40px;
    min-height: 120px;
  }
  .step-img-wrapper {
    height: 120px;
  }
  .step-title {
    font-size: 16px;
  }
  .step-desc {
    font-size: 15px;
  }
  .step-1-waves {
    padding: 0 80px;
  }
  .step-1-waves .avatar {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .step-1-waves .avatar img {
    width: 20px;
    height: 20px;
  }
  .step-1-waves .phone-icon {
    width: 20px;
    height: 20px;
  }
  .step-2-list {
    width: 80%;
  }
  .step-2-list .list-item {
    height: 28px;
  }
  .step-2-list .list-item .item-text {
    font-size: 13px;
  }
  .step-3-chat {
    width: 280px;
  }
  .step-3-chat .message .message-text {
    font-size: 9px;
  }
}
@media (max-width: 768px) {
  #method .container {
    padding: 80px 24px;
    gap: 32px;
  }
  #method .heading .title {
    color: #222;
  }
  #method .heading .desc {
    color: rgba(2, 2, 2, 0.8);
  }
  #method .heading .category .label {
    color: rgba(2, 2, 2, 0.4);
  }
  #method .heading .category .label-line {
    background: rgba(2, 2, 2, 0.4);
  }
  .steps-content {
    gap: 40px;
  }
  .step-row {
    flex-direction: column;
    gap: 16px;
    min-height: unset;
    align-items: center;
  }
  .step-row .timeline-center {
    order: 1;
    position: static;
    width: 100%;
    height: 48px;
    flex-direction: row;
    justify-content: center;
  }
  .step-row .timeline-center .timeline-line {
    width: 80px;
    height: 1px;
  }
  .step-row .timeline-center .timeline-line:first-child {
    transform: none;
  }
  .step-row .timeline-center .timeline-line:last-child {
    transform: none;
  }
  .step-row .timeline-center .timeline-badge {
    position: static;
    transform: none;
  }
  .step-row .step-img-col {
    order: 2;
    width: 100%;
    padding: 0;
    height: auto;
  }
  .step-row .step-text-col {
    order: 3;
    width: 100%;
    padding: 0;
    height: auto;
    text-align: center;
    align-items: center;
  }
  .step-row-final {
    flex-direction: column;
    gap: 16px;
  }
  .step-row-final .timeline-center {
    order: 1;
    flex-direction: column;
    height: auto;
    gap: 8px;
  }
  .step-row-final .timeline-center .timeline-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(2, 2, 2, 0.24) 0%, #222 100%);
  }
  .step-row-final .timeline-center .timeline-line:last-child {
    background: linear-gradient(180deg, #222 0%, rgba(2, 2, 2, 0.24) 100%);
  }
  .step-row-final .timeline-center .timeline-badge {
    order: 2;
  }
  .step-row-final .step-text-col {
    order: 2;
    text-align: center;
    align-items: center;
  }
  .step-img-wrapper {
    height: 140px;
    max-width: 400px;
    margin: 0 auto;
  }
  .step-title {
    font-size: 18px;
  }
  .step-desc {
    font-size: 16px;
    max-width: 500px;
  }
  .step-1-waves {
    padding: 0 60px;
  }
  .step-3-chat {
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  #method .container {
    padding: 80px 24px;
    gap: 24px;
  }
  .step-row {
    gap: 16px;
  }
  .step-row .timeline-center {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .step-row .timeline-center .timeline-line {
    width: 1px;
    height: 40px;
  }
  .step-row .timeline-center .timeline-line:last-child {
    display: none;
  }
  .step-row .timeline-center .timeline-badge {
    width: 20px;
    height: 20px;
    font-size: 12px;
    border-radius: 6px;
  }
  .step-img-wrapper {
    height: 120px;
    border-radius: 16px;
  }
  .step-title {
    font-size: 16px;
  }
  .step-desc {
    font-size: 14px;
    line-height: 1.4;
  }
  .step-1-waves {
    padding: 0 40px;
    border-radius: 16px;
  }
  .step-1-waves .avatar {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }
  .step-1-waves .avatar img {
    width: 18px;
    height: 18px;
  }
  .step-1-waves .phone-icon {
    width: 18px;
    height: 18px;
  }
  .step-2-list {
    width: 90%;
    padding: 3px;
    border-radius: 8px;
  }
  .step-2-list .list-item {
    height: 24px;
    padding: 3px 6px 3px 3px;
    border-radius: 6px;
  }
  .step-2-list .list-item .menu-icon {
    width: 18px;
    height: 18px;
  }
  .step-2-list .list-item .item-text {
    font-size: 11px;
  }
  .step-2-list .list-item .checkbox {
    width: 14px;
    height: 14px;
  }
  .step-2-list .list-item .checkbox .check-icon {
    width: 10px;
    height: 10px;
  }
  .step-3-chat {
    width: 100%;
    padding: 8px;
  }
  .step-3-chat .message {
    padding: 6px;
    gap: 6px;
  }
  .step-3-chat .message .avatar {
    width: 16px;
    height: 16px;
    font-size: 5px;
  }
  .step-3-chat .message .avatar img {
    width: 10px;
    height: 10px;
  }
  .step-3-chat .message .message-text {
    font-size: 8px;
    line-height: 1.3;
  }
  .step-3-chat .message .link-button {
    font-size: 8px;
  }
  .step-3-chat .message .link-button .arrow-icon {
    width: 10px;
    height: 10px;
  }
  .step-3-chat .message.from-them {
    margin-right: 60px;
    border-radius: 6px 6px 6px 2px;
  }
  .step-3-chat .message.from-me {
    margin-left: 60px;
    border-radius: 6px 6px 2px 6px;
  }
  .space-shuttle-icon {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  #method .heading .title {
    color: #222;
  }
  #method .heading .desc {
    color: rgba(2, 2, 2, 0.8);
  }
  #method .heading .category .label {
    color: rgba(2, 2, 2, 0.4);
  }
  #method .heading .category .label-line {
    background: rgba(2, 2, 2, 0.4);
  }
}
@media (max-width: 360px) {
  .step-1-waves {
    padding: 0 20px;
  }
  .step-1-waves .avatar {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }
  .step-2-list .list-item {
    height: 22px;
  }
  .step-2-list .list-item .item-text {
    font-size: 10px;
  }
  .step-3-chat .message .message-text {
    font-size: 7px;
  }
  .step-3-chat .message .link-button {
    font-size: 7px;
  }
}
#faq {
  background: linear-gradient(180deg, #FFF 0%, #FAFAFA 100%);
  width: 100vw;
}
#faq .faq-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
#faq .faq-card {
  background: #fff;
  border: 1px solid rgba(2, 2, 2, 0.12);
  padding: 40px;
  aspect-ratio: 500/250;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap: 8px;
  transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
  cursor: pointer;
}
#faq .faq-card .faq-card-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #222;
  margin: 0;
  transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#faq .faq-card .faq-card-title::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: #222;
  transition: transform 0.3s ease;
  display: none;
}
#faq .faq-card .faq-card-desc {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #222;
  opacity: 0;
  max-height: 0;
  margin: 0;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  overflow: hidden;
}
#faq .faq-card:hover .faq-card-desc {
  opacity: 1;
  max-height: 120px;
}
#faq .faq-card.active .faq-card-title::after {
  transform: rotate(45deg);
}
#faq .faq-card.active .faq-card-desc {
  opacity: 1;
  max-height: 200px;
}
@media (max-width: 768px) {
  #faq .faq-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  #faq .faq-card {
    aspect-ratio: unset;
    padding: 24px;
    border-bottom: 1px solid rgba(2, 2, 2, 0.12);
    border-radius: 0;
  }
  #faq .faq-card:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  #faq .faq-card:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom: 1px solid rgba(2, 2, 2, 0.12);
  }
  #faq .faq-card .faq-card-title {
    font-size: 16px;
    padding-right: 20px;
  }
  #faq .faq-card .faq-card-title::after {
    display: block;
  }
  #faq .faq-card .faq-card-desc {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
  }
  #faq .faq-card:hover .faq-card-desc {
    opacity: 0;
    max-height: 0;
  }
  #faq .faq-card.active .faq-card-desc {
    opacity: 1;
    max-height: 200px;
  }
}
@media (max-width: 480px) {
  #faq .faq-card {
    padding: 20px;
  }
  #faq .faq-card .faq-card-title {
    font-size: 15px;
  }
  #faq .faq-card .faq-card-desc {
    font-size: 14px;
  }
}

#services, #method, #faq {
  position: relative;
  overflow: hidden;
}
#services::after, #method::after, #faq::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(180deg, #FAFAFA 0%, #FFF 100%);
  background-image: url("./Assets/bottom-divider.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

#method, #faq, #testimonials {
  position: relative;
}
#method::before, #faq::before, #testimonials::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(180deg, #FAFAFA 0%, #FFF 100%);
  background-image: url("./Assets/top-divider.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

#testimonials {
  background: linear-gradient(180deg, #FFF 0%, #FAFAFA 100%);
  width: 100vw;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
}
#testimonials .testimonials-container {
  background: #fff;
  border: 1px solid rgba(2, 2, 2, 0.12);
  border-radius: 12px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
#testimonials .testimonial-content {
  padding: 40px;
  display: flex;
  align-items: center;
  min-height: 400px;
  display: flex;
  justify-content: center;
}
#testimonials .testimonial-content .testimonial-wrapper {
  max-width: 80ch;
}
#testimonials .testimonial-content .testimonial-text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(2, 2, 2, 0.8);
  margin-bottom: 24px;
  transition: opacity 0.3s ease;
}
#testimonials .testimonial-content .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
#testimonials .testimonial-content .testimonial-author .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(2, 2, 2, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #222;
  border: 1px solid rgba(2, 2, 2, 0.12);
  transition: opacity 0.3s ease;
}
#testimonials .testimonial-content .testimonial-author .author-avatar .author-avatar-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
#testimonials .testimonial-content .testimonial-author .author-name {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #222;
  transition: opacity 0.3s ease;
}
#testimonials .testimonial-companies {
  display: flex;
  flex-direction: column;
}
#testimonials .testimonial-companies .progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(2, 2, 2, 0.12);
  position: relative;
  overflow: hidden;
}
#testimonials .testimonial-companies .progress-bar .progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #222;
  transition: width 0.1s linear;
}
#testimonials .testimonial-companies .companies-row {
  display: flex;
  border-top: 1px solid rgba(2, 2, 2, 0.12);
}
#testimonials .testimonial-companies .company-btn {
  flex: 1;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
#testimonials .testimonial-companies .company-btn img {
  height: 32px;
  width: auto;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
#testimonials .testimonial-companies .company-btn.active img {
  opacity: 1;
}
#testimonials .testimonial-companies .company-btn:hover img {
  opacity: 0.8;
}
#testimonials .testimonial-companies .company-separator {
  width: 1px;
  background: rgba(2, 2, 2, 0.12);
}

@media (max-width: 900px) {
  #testimonials .testimonial-content {
    padding: 40px 20px 20px;
    min-height: 500px;
  }
  #testimonials .testimonial-companies .companies-row {
    flex-direction: column;
  }
  #testimonials .testimonial-companies .companies-row .company-separator {
    height: 1px;
    width: 100%;
  }
  #testimonials .testimonial-companies .companies-row .company-btn {
    padding: 20px;
  }
}
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.testimonials-mobile {
  display: none;
}

@media (max-width: 768px) {
  #testimonials .desktop-only {
    display: none;
  }
  #testimonials .mobile-only {
    display: block;
  }
  #testimonials .testimonials-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  #testimonials .testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  #testimonials .testimonial-content {
    padding: 24px;
    min-height: auto;
    border-bottom: 1px solid rgba(2, 2, 2, 0.12);
  }
  #testimonials .testimonial-content:last-of-type {
    border-bottom: none;
  }
  #testimonials .testimonial-content .company-logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  #testimonials .testimonial-content .company-logo img {
    height: 32px;
    width: auto;
    opacity: 0.8;
  }
  #testimonials .testimonial-companies {
    display: none;
  }
  #testimonials .testimonial-wrapper .testimonial-text {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #testimonials .testimonial-wrapper .testimonial-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  #testimonials .testimonial-wrapper .testimonial-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 20px;
    background: linear-gradient(90deg, transparent, #fff 50%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  #testimonials .testimonial-wrapper .testimonial-text.expanded::after {
    opacity: 0;
  }
  #testimonials .testimonial-wrapper .testimonial-author .author-avatar {
    width: 36px;
    height: 36px;
    font-size: 12px;
    position: relative;
  }
  #testimonials .testimonial-wrapper .testimonial-author .author-avatar .author-avatar-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
  }
  #testimonials .testimonial-wrapper .testimonial-author .author-name {
    font-size: 13px;
  }
}
#about {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
#about .about-content {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: flex-start;
}
#about .about-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
#about .about-left .heading {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}
#about .about-left .heading .category .label-line {
  background: rgba(255, 255, 255, 0.52);
}
#about .about-left .heading .category .label {
  color: rgba(255, 255, 255, 0.52);
}
#about .about-left .heading .title {
  color: #fff;
}
#about .about-left .about-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  display: flex;
  align-items: center;
}
#about .about-left .about-image img {
  width: 344.709px;
  height: 698.781px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#about .about-left .about-image::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 320px;
  background: radial-gradient(circle at center, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background-blend-mode: lighter;
  right: 0;
}
#about .about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#about .about-right .desc {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  max-width: 597px;
}
#about .about-right .desc .desc-highlight {
  font-weight: 500;
  color: #fff;
}

@media (max-width: 1200px) {
  #about .about-content {
    gap: 80px;
  }
  #about .about-left .about-image img {
    width: 280px;
    height: auto;
  }
}
@media (max-width: 900px) {
  #about {
    padding: 80px 0;
  }
  #about .about-content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  #about .about-left {
    text-align: center;
    width: 100%;
  }
  #about .about-left .heading {
    align-items: center;
  }
  #about .about-left .heading .category {
    justify-content: center;
  }
  #about .about-left .heading .title {
    text-align: center;
  }
  #about .about-left .about-image {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }
  #about .about-left .about-image img {
    width: 280px;
    height: auto;
  }
  #about .about-left .about-image::after {
    display: none;
  }
  #about .about-right {
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 768px) {
  #about .about-left {
    text-align: left;
  }
  #about .about-left .heading {
    align-items: flex-start;
  }
  #about .about-left .heading .category {
    justify-content: flex-start;
  }
  #about .about-left .heading .title {
    text-align: left;
  }
  #about .about-left .about-image {
    position: absolute;
    right: -24px;
    top: -160px;
    opacity: 40%;
    z-index: -1;
  }
  #about .about-left .about-image img {
    width: 300px;
    height: auto;
  }
  #about .about-right {
    text-align: left;
    align-items: flex-start;
  }
}
#contact {
  position: relative;
  overflow: hidden;
}
#contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 0;
}
#contact .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
}
#contact .heading .category .label-line {
  background: rgba(255, 255, 255, 0.52);
}
#contact .heading .category .label {
  color: rgba(255, 255, 255, 0.52);
}
#contact .heading .title {
  color: #fff;
  text-align: center;
}
#contact .heading .desc {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 597px;
}
#contact .contact-form {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  background: #111111;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}
#contact .contact-form .contact-tabs {
  display: flex;
  width: 100%;
}
#contact .contact-form .contact-tabs .tab-btn {
  flex: 1;
  padding: 24px;
  background: #111111;
  border: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
#contact .contact-form .contact-tabs .tab-btn:first-child {
  border-top-left-radius: 24px;
}
#contact .contact-form .contact-tabs .tab-btn:last-child {
  border-top-right-radius: 24px;
}
#contact .contact-form .contact-tabs .tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  transition: background-color 0.3s ease;
}
#contact .contact-form .contact-tabs .tab-btn + .tab-btn {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
#contact .contact-form .contact-tabs .tab-btn.active {
  background: #222222;
}
#contact .contact-form .contact-tabs .tab-btn.active::after {
  background: #222222;
}
#contact .contact-form .contact-tabs .tab-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.02);
}
#contact .contact-form .tab-content {
  background: #111111;
}
#contact .contact-form .tab-content.hidden {
  display: none;
}
#contact .contact-form .message-form {
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#contact .contact-form .message-form .form-row {
  display: flex;
  gap: 24px;
}
#contact .contact-form .message-form .form-row .form-group {
  flex: 1;
}
#contact .contact-form .message-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
#contact .contact-form .message-form .form-group label {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.64);
  transition: color 0.3s ease;
}
#contact .contact-form .message-form .form-group label .check-icon,
#contact .contact-form .message-form .form-group label .error-icon {
  width: 0;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  overflow: hidden;
}
#contact .contact-form .message-form .form-group label .check-icon {
  background-image: url("Assets/Checkmark - Iconly Pro.svg");
}
#contact .contact-form .message-form .form-group label .error-icon {
  background-image: url("Assets/Close remove - Iconly Pro.svg");
}
#contact .contact-form .message-form .form-group:focus-within label, #contact .contact-form .message-form .form-group:hover label {
  color: #fff;
}
#contact .contact-form .message-form .form-group input,
#contact .contact-form .message-form .form-group select,
#contact .contact-form .message-form .form-group textarea {
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease;
}
#contact .contact-form .message-form .form-group input:focus, #contact .contact-form .message-form .form-group input:hover,
#contact .contact-form .message-form .form-group select:focus,
#contact .contact-form .message-form .form-group select:hover,
#contact .contact-form .message-form .form-group textarea:focus,
#contact .contact-form .message-form .form-group textarea:hover {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}
#contact .contact-form .message-form .form-group input::-moz-placeholder, #contact .contact-form .message-form .form-group select::-moz-placeholder, #contact .contact-form .message-form .form-group textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.52);
}
#contact .contact-form .message-form .form-group input::placeholder,
#contact .contact-form .message-form .form-group select::placeholder,
#contact .contact-form .message-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}
#contact .contact-form .message-form .form-group.is-valid .check-icon {
  width: 17px;
  margin-right: 8px;
  opacity: 1;
  transform: scale(1);
}
#contact .contact-form .message-form .form-group.is-invalid .error-icon {
  width: 17px;
  margin-right: 8px;
  opacity: 1;
  transform: scale(1);
}
#contact .contact-form .message-form .form-group:focus-within .check-icon, #contact .contact-form .message-form .form-group:focus-within .error-icon {
  width: 0;
  margin-right: 0;
  opacity: 0;
  transform: scale(0);
}
#contact .contact-form .message-form .form-group .custom-select-wrapper {
  position: relative;
  display: block;
}
#contact .contact-form .message-form .form-group .custom-select {
  position: relative;
  cursor: pointer;
}
#contact .contact-form .message-form .form-group .custom-select .custom-select-trigger {
  padding: 16px;
  padding-right: 48px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
}
#contact .contact-form .message-form .form-group .custom-select .custom-select-trigger .custom-select-text {
  display: block;
}
#contact .contact-form .message-form .form-group .custom-select .custom-select-trigger .custom-select-text.placeholder {
  color: rgba(255, 255, 255, 0.52);
}
#contact .contact-form .message-form .form-group .custom-select .custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  transition: transform 0.2s ease;
}
#contact .contact-form .message-form .form-group .custom-select:hover .custom-select-trigger {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}
#contact .contact-form .message-form .form-group .custom-select:focus {
  outline: none;
}
#contact .contact-form .message-form .form-group .custom-select:focus .custom-select-trigger {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}
#contact .contact-form .message-form .form-group .custom-select.open .custom-select-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}
#contact .contact-form .message-form .form-group .custom-select .custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  margin-top: 4px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
#contact .contact-form .message-form .form-group .custom-select .custom-select-dropdown::-webkit-scrollbar {
  width: 6px;
}
#contact .contact-form .message-form .form-group .custom-select .custom-select-dropdown::-webkit-scrollbar-track {
  background: transparent;
}
#contact .contact-form .message-form .form-group .custom-select .custom-select-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
#contact .contact-form .message-form .form-group .custom-select .custom-select-dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
#contact .contact-form .message-form .form-group .custom-select.open .custom-select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#contact .contact-form .message-form .form-group .custom-select .custom-option {
  padding: 12px 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
#contact .contact-form .message-form .form-group .custom-select .custom-option:last-child {
  border-bottom: none;
}
#contact .contact-form .message-form .form-group .custom-select .custom-option[data-value=""] {
  color: rgba(255, 255, 255, 0.52);
  font-style: italic;
  background: #0f0f0f;
}
#contact .contact-form .message-form .form-group .custom-select .custom-option:hover {
  background: #2a2a2a;
  color: #fff;
}
#contact .contact-form .message-form .form-group .custom-select .custom-option.selected {
  background: #333333;
  color: #fff;
  position: relative;
}
#contact .contact-form .message-form .form-group .custom-select .custom-option.selected::after {
  content: "✓";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #4ade80;
  font-weight: 600;
}
#contact .contact-form .message-form .form-group select:not(.select-wrapper select) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 8px;
}
#contact .contact-form .message-form .form-group textarea {
  resize: vertical;
  min-height: 160px;
}
#contact .contact-form .message-form button[type=submit] {
  align-self: flex-start;
  margin-top: 8px;
  padding: 16px 32px;
  background: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #111;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}
#contact .contact-form .message-form button[type=submit]:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.9);
}
#contact .contact-form .message-form button[type=submit]:disabled {
  background: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
  pointer-events: none;
}
#contact .contact-form .message-form .form-spinner {
  align-self: flex-start;
  margin-top: 8px;
  padding: 16px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0);
}
#contact .contact-form .message-form .form-spinner .spinner-circle {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  box-sizing: border-box;
}
#contact .contact-form .message-form .form-success {
  align-self: flex-start;
  margin-top: 8px;
  padding: 16px 0px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-align: center;
  animation: slideIn 0.3s ease-out;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-4px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(4px);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#contact .contact-form #calendar-content iframe {
  display: block;
  background: #111111;
}

@media (max-width: 900px) {
  #contact .container {
    padding: 80px 24px;
  }
  #contact .heading {
    margin-bottom: 40px;
    text-align: left;
    align-items: flex-start;
  }
  #contact .heading .category {
    justify-content: flex-start;
  }
  #contact .heading .title {
    text-align: left;
  }
  #contact .heading .desc {
    text-align: left;
  }
  #contact .contact-form .contact-tabs .tab-btn {
    padding: 20px 16px;
    font-size: 16px;
  }
  #contact .contact-form .message-form {
    padding: 40px 24px;
    gap: 24px;
  }
  #contact .contact-form .message-form .form-row {
    flex-direction: column;
    gap: 24px;
  }
  #contact .contact-form .message-form button[type=submit] {
    width: 100%;
    justify-content: center;
  }
}
.pain-title-main,
.pain-title-sub,
.hero-title,
.hero-title-main,
.hero-title-sub {
  font-family: "Cal Sans";
  font-weight: 400;
}

.subheading,
.pain-card-title,
.call-to-action,
.btn-primary-glow,
.secondary-btn {
  font-family: "Inter";
  font-weight: 600;
}

.description,
.pain-card-desc,
.pain-intro,
.pain-intro-grey {
  font-family: "Inter";
  font-weight: 300;
}

.pain-card-action-v2,
.cta-container,
.pain-intro-white {
  font-family: "Inter";
  font-weight: 500;
}

.hero-section {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border-bottom-right-radius: 80px;
  border-bottom-left-radius: 80px;
  overflow: hidden;
  height: 90vh;
  min-height: 600px;
  justify-content: center;
}
.hero-section .hero-wrapper {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.hero-section .hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 0;
  max-width: 1600px;
  margin: 0 auto;
  height: 100%;
}
.hero-section .hero-left {
  width: 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  padding-left: 80px;
  padding-right: 80px;
}
.hero-section .logo img {
  height: 40px;
}
.hero-section .hero-intro-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-section .status-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hero-section .status-dot {
  width: 8px;
  height: 8px;
  background: #65a30d;
  border-radius: 9999px;
  display: inline-block;
}
.hero-section .status-text {
  color: #222;
  font-size: 14px;
  font-family: "Inter";
  font-weight: 500;
}
.hero-section .hero-title-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-section .hero-title-main {
  color: #222;
  font-family: "Cal Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  margin: 0;
  font-size: clamp(36px, 2.25vw, 44px);
}
.hero-section .hero-title-sub {
  color: #222;
  font-family: "Cal Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  opacity: 0.52;
  margin: 0;
  font-size: clamp(36px, 2.25vw, 44px);
}
.hero-section .hero-desc-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-section .hero-subtitle {
  color: rgba(2, 2, 2, 0.8);
  font-size: 18px;
  font-family: "Inter";
  font-weight: 300;
  margin: 0;
}
.hero-section .hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-section .hero-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 18px;
  font-family: "Inter";
  font-weight: 500;
}
.hero-section .check-icon {
  width: 22px;
  height: 22px;
  background-image: url("Assets/Check square - Iconly Pro.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}
.hero-section .hero-btn-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-section .hero-carousel-2col {
  width: 50%;
  min-width: 0;
  height: 100%;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: visible;
}
.hero-section .hero-carousel-2col .carousel-col {
  flex: 1 1 0;
  height: 982px;
  overflow: hidden;
  position: relative;
  width: 50%;
  height: 100%;
}
.hero-section .hero-carousel-2col .carousel-track {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  justify-content: center;
  animation: scroll-up 30s linear infinite;
}
.hero-section .hero-carousel-2col .carousel-col:nth-child(2) .carousel-track {
  animation: scroll-down 30s linear infinite;
}
.hero-section .hero-carousel-2col .carousel-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 1.5, 0.5, 1), box-shadow 0.3s, border-radius 0.3s;
}
.hero-section .hero-carousel-2col .carousel-img:hover {
  position: relative;
  z-index: 99;
  transform: scale(1.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .hero-section .hero-carousel-2col {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 8px;
  }
  .hero-section .hero-carousel-2col .carousel-col {
    flex: none;
    width: 100%;
    height: 200px;
  }
  .hero-section .hero-carousel-2col .carousel-col:first-child {
    order: 1;
  }
  .hero-section .hero-carousel-2col .carousel-col:nth-child(2) {
    order: 2;
  }
  .hero-section .hero-carousel-2col .carousel-track {
    flex-direction: row;
    width: -moz-max-content;
    width: max-content;
    height: 100%;
    gap: 8px;
    animation: scroll-left 25s linear infinite;
  }
  .hero-section .hero-carousel-2col .carousel-track .carousel-img {
    width: auto;
    height: 100%;
    max-width: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    will-change: transform;
    transform: translateZ(0);
  }
  .hero-section .hero-carousel-2col .carousel-col:nth-child(2) .carousel-track {
    animation: scroll-right 25s linear infinite;
    animation-delay: -12.5s;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-carousel-2col .carousel-col {
    height: 150px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-snap-align: start;
  }
  .hero-section .hero-carousel-2col .carousel-track {
    gap: 6px;
    animation-duration: 20s;
  }
  .hero-section .hero-carousel-2col .carousel-track .carousel-img {
    max-width: 200px;
    scroll-snap-align: start;
  }
  .hero-section .hero-carousel-2col .carousel-col:nth-child(2) .carousel-track {
    animation-duration: 20s;
    animation-delay: -10s;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-carousel-2col .carousel-col {
    height: 120px;
  }
  .hero-section .hero-carousel-2col .carousel-track {
    gap: 4px;
  }
  .hero-section .hero-carousel-2col .carousel-track .carousel-img {
    max-width: 150px;
  }
}
.hero-section .secondary-btn {
  padding: 16px 32px;
  background: #fff;
  color: #222;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Inter";
  font-weight: 600;
  text-decoration: none;
  outline: 1px #222 solid;
  outline-offset: -1px;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.hero-section .secondary-btn:hover {
  background: rgba(2, 2, 2, 0.04);
  color: #222;
}

@media (max-width: 1200px) {
  .hero-section {
    height: 85vh;
    min-height: 550px;
  }
  .hero-section .hero-left {
    padding-left: 60px;
    padding-right: 60px;
    gap: 32px;
  }
  .hero-section .hero-title-main,
  .hero-section .hero-title-sub {
    font-size: clamp(32px, 2vw, 40px);
  }
  .hero-section .hero-subtitle {
    font-size: 16px;
  }
  .hero-section .hero-list li {
    font-size: 16px;
  }
  .hero-section .hero-carousel-2col {
    height: 100%;
  }
}
@media (max-width: 1024px) {
  .hero-section {
    height: 80vh;
    min-height: 500px;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
  }
  .hero-section .hero-content {
    flex-direction: column;
    padding: 40px 0 20px 0;
    gap: 32px;
    justify-content: flex-start;
  }
  .hero-section .hero-left,
  .hero-section .hero-carousel-2col {
    width: 100%;
  }
  .hero-section .hero-left {
    padding-left: 40px;
    padding-right: 40px;
    gap: 24px;
    align-items: center;
    text-align: center;
  }
  .hero-section .hero-title-main,
  .hero-section .hero-title-sub {
    font-size: clamp(28px, 3vw, 36px);
    text-align: center;
  }
  .hero-section .hero-subtitle {
    font-size: 16px;
    text-align: center;
  }
  .hero-section .hero-list {
    align-items: center;
  }
  .hero-section .hero-list li {
    justify-content: center;
    font-size: 15px;
  }
  .hero-section .hero-btn-row {
    justify-content: center;
    gap: 12px;
  }
  .hero-section .hero-carousel-2col {
    height: 240px;
    padding: 0 20px;
    flex-direction: column;
    overflow: hidden;
    gap: 8px;
  }
  .hero-section .hero-carousel-2col .carousel-col {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 100%;
    width: 100%;
    gap: 12px;
    padding: 8px 0;
  }
  .hero-section .hero-carousel-2col .carousel-col::-webkit-scrollbar {
    display: none;
  }
  .hero-section .hero-carousel-2col .carousel-col .carousel-img {
    height: 90px;
    width: auto;
    min-width: 120px;
    max-width: 200px;
    flex-shrink: 0;
    border-radius: 8px;
  }
  .hero-section .hero-carousel-2col .carousel-col .carousel-img:hover {
    transform: scale(1.05);
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: -moz-fit-content;
    height: fit-content;
    min-height: 450px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    padding: 80px 24px 0 24px;
  }
  .hero-section .hero-content {
    padding: 32px 0 16px 0;
    gap: 48px;
  }
  .hero-section .hero-left {
    padding-left: 24px;
    padding-right: 24px;
    gap: 40px;
    align-items: flex-start;
    text-align: left;
  }
  .hero-section .hero-intro-section {
    gap: 16px;
  }
  .hero-section .hero-title-main,
  .hero-section .hero-title-sub {
    font-size: clamp(32px, 4vw, 40px);
    text-align: left;
  }
  .hero-section .hero-desc-block {
    gap: 16px;
  }
  .hero-section .hero-subtitle {
    font-size: 16px;
    text-align: left;
  }
  .hero-section .hero-list {
    gap: 8px;
    align-items: flex-start;
  }
  .hero-section .hero-list li {
    font-size: 16px;
    justify-content: flex-start;
  }
  .hero-section .check-icon {
    width: 14px;
    height: 14px;
  }
  .hero-section .hero-btn-row {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: flex-start;
  }
  .hero-section .hero-btn-row .btn-primary-glow,
  .hero-section .hero-btn-row .secondary-btn {
    width: 100%;
    justify-content: center;
    padding: 0 24px !important;
    font-size: 15px;
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
    display: flex;
    align-items: center;
    box-sizing: border-box !important;
    line-height: 1 !important;
  }
  .hero-section .hero-carousel-2col {
    height: 300px;
    padding: 0 24px;
    gap: 8px;
    width: 100vw;
    overflow-x: hidden;
  }
  .hero-section .hero-carousel-2col .carousel-col {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 145px;
    width: 100%;
    gap: 12px;
    padding: 8px 0;
  }
  .hero-section .hero-carousel-2col .carousel-col::-webkit-scrollbar {
    display: none;
  }
  .hero-section .hero-carousel-2col .carousel-col .carousel-img {
    height: 130px;
    width: auto;
    min-width: 180px;
    max-width: 250px;
    flex-shrink: 0;
    border-radius: 8px;
  }
  .hero-section .hero-carousel-2col .carousel-col .carousel-img:hover {
    transform: scale(1.05);
  }
}
@media (max-width: 480px) {
  .hero-section {
    height: -moz-fit-content;
    height: fit-content;
    min-height: 400px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    padding: 80px 24px 0 24px;
  }
  .hero-section .hero-content {
    padding: 24px 0 12px 0;
    gap: 16px;
  }
  .hero-section .hero-left {
    padding-left: 16px;
    padding-right: 16px;
    gap: 40px;
    align-items: flex-start;
    text-align: left;
  }
  .hero-section .hero-intro-section {
    gap: 12px;
  }
  .hero-section .status-row {
    justify-content: flex-start;
  }
  .hero-section .status-row .status-text {
    font-size: 12px;
  }
  .hero-section .status-row .status-dot {
    width: 6px;
    height: 6px;
  }
  .hero-section .hero-title-main,
  .hero-section .hero-title-sub {
    font-size: clamp(32px, 5vw, 36px);
    line-height: 1.2;
    text-align: left;
  }
  .hero-section .hero-subtitle {
    font-size: 16px;
    text-align: left;
  }
  .hero-section .hero-list {
    gap: 6px;
    align-items: flex-start;
  }
  .hero-section .hero-list li {
    font-size: 16px;
    justify-content: flex-start;
  }
  .hero-section .check-icon {
    width: 12px;
    height: 12px;
  }
  .hero-section .hero-btn-row {
    gap: 6px;
    align-items: flex-start;
  }
  .hero-section .hero-btn-row .btn-primary-glow,
  .hero-section .hero-btn-row .secondary-btn {
    padding: 0 20px !important;
    font-size: 14px;
    border-radius: 6px;
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
    display: flex;
    align-items: center;
    box-sizing: border-box !important;
    line-height: 1 !important;
  }
  .hero-section .hero-carousel-2col {
    height: 300px;
    padding: 0 16px;
    gap: 6px;
  }
  .hero-section .hero-carousel-2col .carousel-col {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 145px;
    width: 100%;
    gap: 10px;
    padding: 6px 0;
  }
  .hero-section .hero-carousel-2col .carousel-col::-webkit-scrollbar {
    display: none;
  }
  .hero-section .hero-carousel-2col .carousel-col .carousel-img {
    height: 130px;
    width: auto;
    min-width: 150px;
    max-width: 200px;
    flex-shrink: 0;
    border-radius: 6px;
  }
  .hero-section .hero-carousel-2col .carousel-col .carousel-img:hover {
    transform: scale(1.04);
  }
}
@media (max-width: 360px) {
  .hero-section {
    min-height: 350px;
  }
  .hero-section .hero-title-main,
  .hero-section .hero-title-sub {
    font-size: clamp(18px, 6vw, 24px);
  }
  .hero-section .hero-subtitle {
    font-size: 13px;
  }
  .hero-section .hero-list li {
    font-size: 12px;
  }
  .hero-section .hero-carousel-2col {
    height: 110px;
    gap: 3px;
  }
  .hero-section .hero-carousel-2col .carousel-col {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 50px;
    width: 100%;
    gap: 6px;
    padding: 3px 0;
  }
  .hero-section .hero-carousel-2col .carousel-col::-webkit-scrollbar {
    display: none;
  }
  .hero-section .hero-carousel-2col .carousel-col .carousel-img {
    height: 40px;
    width: auto;
    min-width: 60px;
    max-width: 90px;
    flex-shrink: 0;
  }
}
.btn-primary-glow {
  padding: 16px 32px;
  background: #222;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Inter";
  font-weight: 600;
  text-decoration: none;
  border: none;
  outline: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.btn-primary-glow:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.24);
}

.btn-primary-glow span {
  position: relative;
  z-index: 2;
}

.btn-primary-glow::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 6px;
  border: 2px solid #fff;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  box-shadow: 0 0 8px 2px #fff;
  transition: opacity 0.2s, transform 0.2s;
  -webkit-mask-image: conic-gradient(from var(--shine-angle, 0deg), transparent 0deg, #fff 20deg, #fff 60deg, transparent 80deg, transparent 360deg);
          mask-image: conic-gradient(from var(--shine-angle, 0deg), transparent 0deg, #fff 20deg, #fff 60deg, transparent 80deg, transparent 360deg);
}

.btn-primary-glow:hover::before {
  opacity: 1;
}

.btn-primary-glow::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: -8px;
  bottom: -8px;
  border-radius: 12px;
  z-index: 0;
}

.cta-border {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 6px;
  border: 2px solid #fff;
  pointer-events: none;
  transition: border-color 0.2s, opacity 0.2s, filter 0.2s, transform 0.2s;
  z-index: 2;
}

.cta-btn-simple:hover .cta-border {
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-border.shine {
  border: 2px solid transparent;
  border-radius: 6px;
  -o-border-image: conic-gradient(from var(--shine-angle, 0deg), transparent 0deg, #fff 20deg, #fff 60deg, transparent 80deg, transparent 360deg) 1;
     border-image: conic-gradient(from var(--shine-angle, 0deg), transparent 0deg, #fff 20deg, #fff 60deg, transparent 80deg, transparent 360deg) 1;
  opacity: 1;
  filter: drop-shadow(0 0 6px #fff);
  z-index: 3;
  pointer-events: none;
  transition: border-image 0.1s, opacity 0.2s, filter 0.2s, transform 0.2s;
  transition: border-image 0.1s, opacity 0.2s, filter 0.2s, transform 0.2s, -o-border-image 0.1s;
  transform: rotate(var(--shine-angle, 0deg));
}

@keyframes pain-icon-wiggle {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(20deg);
  }
  40% {
    transform: rotate(-15deg);
  }
  60% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.pain-card-v2:first-child .icon-background svg {
  transition: transform 0.2s;
}

.pain-card-v2:hover:first-child .icon-background svg {
  animation: pain-icon-wiggle 0.7s cubic-bezier(0.4, 1.5, 0.5, 1) 1 forwards;
}

/* Nettoyage animation icône SVG première card : uniquement wiggle */
.pain-card-v2:first-child .icon-background svg path {
  stroke-width: 1.5;
  filter: none;
  transition: stroke 0.2s;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
}

@keyframes pain-icon-stroke-draw {
  to {
    stroke-dashoffset: 0;
  }
}
.pain-card-v2:first-child .icon-background svg .arrow {
  transform: none;
  opacity: 1;
  transition: none;
}

.pain-card-v2:hover:first-child .icon-background svg .arrow {
  animation: arrow-impact 0.5s cubic-bezier(0.4, 1.5, 0.5, 1) 1;
}

@keyframes arrow-impact {
  0% {
    transform: none;
  }
  20% {
    transform: translate(16px, -8px) scale(0.5);
  }
  60% {
    transform: translate(0px, 0px) scale(1.05);
  }
  100% {
    transform: none;
  }
}
.pain-card-v2:nth-child(2) .icon-background svg .icon-anim,
.pain-card-v2:nth-child(3) .icon-background svg .icon-anim {
  transform: none;
  opacity: 1;
  transition: none;
}

.pain-card-v2:hover:nth-child(2) .icon-background svg .icon-anim {
  animation: icon-impact-2 0.5s cubic-bezier(0.4, 1.5, 0.5, 1) 1;
}

.pain-card-v2:hover:nth-child(3) .icon-background svg .icon-anim {
  animation: icon-impact-3 0.5s cubic-bezier(0.4, 1.5, 0.5, 1) 1;
}

@keyframes icon-impact-2 {
  0% {
    transform: none;
  }
  20% {
    transform: scale(0.7) rotate(-10deg);
  }
  60% {
    transform: scale(1.08) rotate(5deg);
  }
  100% {
    transform: none;
  }
}
@keyframes icon-impact-3 {
  0% {
    transform: none;
  }
  100% {
    transform: rotate(25deg);
  }
}
/* 2ème icône : délai sur la 2ème partie (0.25s) */
.pain-card-v2:nth-child(2):hover .icon-background svg .icon-anim:nth-of-type(2) {
  animation-delay: 0.25s;
}

/* 3ème icône : une partie va à droite, l'autre à gauche (amplitude augmentée) */
.pain-card-v2:nth-child(3):hover .icon-background svg .icon-anim:nth-of-type(1) {
  animation: icon-impact-3a 0.5s cubic-bezier(0.4, 1.5, 0.5, 1) 1;
}

.pain-card-v2:nth-child(3):hover .icon-background svg .icon-anim:nth-of-type(2) {
  animation: icon-impact-3b 0.5s cubic-bezier(0.4, 1.5, 0.5, 1) 1;
}

@keyframes icon-impact-3a {
  0% {
    transform: none;
  }
  30% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(10deg);
  }
  100% {
    transform: none;
  }
}
@keyframes icon-impact-3b {
  0% {
    transform: none;
  }
  30% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(-10deg);
  }
  100% {
    transform: none;
  }
}
@media (max-width: 900px) {
  .pain-header {
    flex-direction: column;
    gap: 16px;
    text-align: left;
  }
  .pain-intro {
    text-align: left;
    margin-top: 0;
  }
  .pain-cards {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}
@media (max-width: 1100px) {
  .pain-container {
    padding: 60px 16px;
  }
  .pain-header-flex {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .pain-intro {
    max-width: 100%;
  }
  .pain-cards-flex {
    flex-direction: column;
    gap: 24px;
  }
  .pain-card-content {
    padding: 14px;
  }
  .pain-card-action-v2 {
    padding: 10px 12px;
    font-size: 13px;
  }
}
@media (max-width: 700px) {
  .pain-title-main,
  .pain-title-sub {
    font-size: 1.2rem;
  }
  .pain-container {
    padding: 32px 4px;
  }
  .pain-card-content {
    padding: 14px;
  }
  .pain-card-action-v2 {
    padding: 10px 12px;
    font-size: 13px;
  }
}
.section-header {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.section-header-divider {
  width: 24px;
  height: 1px;
  background: rgba(2, 2, 2, 0.4);
}
.section-header-label {
  color: rgba(2, 2, 2, 0.4);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}
.section-header-title {
  align-self: stretch;
  text-align: center;
}
.section-header-title span {
  color: #222;
  font-size: 32px;
  font-family: "Cal Sans", sans-serif;
  font-weight: 600;
}
.section-header-title span.subtitle {
  color: rgba(2, 2, 2, 0.4);
}
.section-header-desc {
  width: 522px;
  max-width: 100%;
  text-align: center;
}
.section-header-desc span {
  color: rgba(2, 2, 2, 0.8);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}
.section-header-desc span.highlight {
  color: #222;
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter";
  font-weight: 300;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  webkit-font-smoothing: auto;
}

.fixed-elements {
  position: fixed;
  inset: 0;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  flex-direction: column;
  pointer-events: none;
  height: 100vh;
  width: 100%;
  box-sizing: border-box;
}
.fixed-elements .progressive-blur-container {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  height: 64px;
  pointer-events: none;
  box-sizing: border-box;
}
.fixed-elements .progressive-blur-container.top {
  top: 0;
}
.fixed-elements .progressive-blur-container.bottom {
  bottom: 0;
  transform: rotate(180deg);
}
.fixed-elements .progressive-blur-container > .blur-filter {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.fixed-elements .progressive-blur-container > .blur-filter:nth-child(1) {
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  mask: linear-gradient(rgb(0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0) 40%);
  -webkit-mask: linear-gradient(rgb(0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0) 40%);
}
.fixed-elements .progressive-blur-container > .blur-filter:nth-child(2) {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  mask: linear-gradient(rgba(0, 0, 0, 0) 10%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 60%);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 10%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 60%);
}
.fixed-elements .progressive-blur-container > .blur-filter:nth-child(3) {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  mask: linear-gradient(rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 70%);
}
.fixed-elements .progressive-blur-container > .blur-filter:nth-child(4) {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mask: linear-gradient(rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 80%);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 80%);
}
.fixed-elements .progressive-blur-container > .blur-filter:nth-child(5) {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  mask: linear-gradient(rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 90%);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 90%);
}
.fixed-elements .progressive-blur-container > .blur-filter:nth-child(6) {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  mask: linear-gradient(rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}
.fixed-elements .progressive-blur-container > .blur-filter:nth-child(7) {
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  mask: linear-gradient(rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0) 70%, rgb(0, 0, 0) 90%);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0) 70%, rgb(0, 0, 0) 90%);
}
.fixed-elements .progressive-blur-container > .gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.01), transparent);
}
.black-section .fixed-elements .progressive-blur-container > .gradient {
  background: linear-gradient(rgba(0, 0, 0, 0.01), transparent);
}
.fixed-elements .fixed-logo {
  pointer-events: auto;
  transition: filter 0.3s ease;
  margin-bottom: auto;
  position: relative;
  z-index: 1;
  perspective: 1000px;
}
.fixed-elements .fixed-logo .logo-link {
  display: block;
  text-decoration: none;
}
.fixed-elements .fixed-logo img {
  height: 40px;
  width: auto;
  transition: none;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  transform: rotateY(0deg);
}
.fixed-elements .fixed-logo:hover img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotateY(360deg);
}
.fixed-elements .fixed-logo.inverted {
  filter: brightness(0) invert(1);
}
.fixed-elements .fixed-cta {
  pointer-events: auto;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 200%);
  z-index: 100;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
}
.fixed-elements .fixed-cta.visible {
  transform: translate(-50%, -24px);
  opacity: 1;
  visibility: visible;
}

.container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 80px;
  width: 100%;
  gap: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .fixed-elements {
    padding: 12px 16px;
  }
  .fixed-elements .progressive-blur-container {
    height: 32px;
  }
  .fixed-elements .fixed-logo img {
    height: 32px;
  }
  .fixed-elements .fixed-cta {
    bottom: 12px;
    left: 24px;
    right: 24px;
    width: calc(100% - 48px);
    transform: translateY(200%);
  }
  .fixed-elements .fixed-cta.visible {
    transform: translateY(-12px);
  }
}
@media (max-width: 480px) {
  .fixed-elements {
    padding: 8px 12px;
  }
  .fixed-elements .progressive-blur-container {
    height: 24px;
  }
  .fixed-elements .fixed-logo img {
    height: 28px;
  }
}
@media (max-width: 1200px) {
  .container {
    padding: 100px 60px;
    gap: 36px;
  }
}
@media (max-width: 1024px) {
  .container {
    padding: 80px 40px;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 80px 24px;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 80px 24px;
    gap: 20px;
  }
}
@media (max-width: 360px) {
  .container {
    padding: 32px 12px;
    gap: 16px;
  }
}
.black-section .container {
  width: 100%;
  box-sizing: border-box;
}

section {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .pain-card-v2 {
    width: 100%;
    max-width: 445px;
    margin: 0 auto;
  }
  .top-content {
    padding: 18px 12px 0 12px;
  }
  .cta-container {
    padding: 14px 12px;
    min-height: 60px;
  }
  .subheading {
    font-size: 16px;
  }
  .description {
    font-size: 13px;
  }
  .call-to-action {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .pain-card-v2 {
    max-width: 100%;
  }
  .subheading {
    font-size: 15px;
  }
  .description {
    font-size: 12px;
  }
  .call-to-action {
    font-size: 13px;
  }
}
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-screen .loading-content {
  text-align: center;
  color: #fff;
}
.loading-screen .loading-logo {
  margin-bottom: 30px;
}
.loading-screen .loading-logo img {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
}
.loading-screen .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
.loading-screen .loading-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.8;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Animation de défilement vers le haut */
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
/* Animation de défilement vers le bas */
@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
/* Animations horizontales pour responsive */
@keyframes scroll-left {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-40%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-40%);
  }
  100% {
    transform: translateX(10%);
  }
}
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

::-moz-selection {
  background: rgba(2, 2, 2, 0.08);
  color: inherit;
}

::selection {
  background: rgba(2, 2, 2, 0.08);
  color: inherit;
}

::-moz-selection {
  background: rgba(2, 2, 2, 0.08);
  color: inherit;
}

.black-section ::-moz-selection {
  background: rgba(255, 255, 255, 0.24);
  color: inherit;
}

.black-section ::selection {
  background: rgba(255, 255, 255, 0.24);
  color: inherit;
}
.black-section ::-moz-selection {
  background: rgba(255, 255, 255, 0.24);
  color: inherit;
}

.bottom-fixed-menu {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 120px;
  pointer-events: none;
  z-index: 1000;
}
@media (max-width: 1024px) {
  .bottom-fixed-menu {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .bottom-fixed-menu {
    height: 80px;
  }
}
@media (max-width: 480px) {
  .bottom-fixed-menu {
    height: 70px;
  }
}
@media (max-width: 360px) {
  .bottom-fixed-menu {
    height: 60px;
  }
}
.bottom-fixed-menu .menu-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px;
  pointer-events: all;
  margin: 0 auto;
  max-width: 1600px;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (max-width: 1024px) {
  .bottom-fixed-menu .menu-container {
    max-width: calc(100vw - 32px);
    padding: 3px;
    height: 46px;
  }
}
@media (max-width: 768px) {
  .bottom-fixed-menu .menu-container {
    max-width: calc(100vw - 16px);
    padding: 2px;
    height: 44px;
    gap: 2px;
  }
}
@media (max-width: 480px) {
  .bottom-fixed-menu .menu-container {
    height: 40px;
    padding: 1px;
    gap: 1px;
  }
}
@media (max-width: 360px) {
  .bottom-fixed-menu .menu-container {
    height: 36px;
    padding: 1px;
  }
}
@media (max-width: 320px) {
  .bottom-fixed-menu .menu-container .menu-anchors {
    overflow: hidden;
  }
  .bottom-fixed-menu .menu-container .menu-anchors .menu-anchor {
    min-width: auto;
    flex-shrink: 1;
  }
  .bottom-fixed-menu .menu-container .menu-anchors .menu-anchor:nth-child(n+4) {
    display: none;
  }
}
.bottom-fixed-menu .menu-anchors {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 768px) {
  .bottom-fixed-menu .menu-anchors {
    gap: 3px;
  }
}
@media (max-width: 480px) {
  .bottom-fixed-menu .menu-anchors {
    gap: 2px;
  }
}
@media (max-width: 360px) {
  .bottom-fixed-menu .menu-anchors {
    gap: 1px;
  }
}
.bottom-fixed-menu .menu-anchors.left-anchors {
  justify-content: flex-start;
}
.bottom-fixed-menu .menu-anchors.right-anchors {
  justify-content: flex-end;
}
.bottom-fixed-menu .menu-anchor {
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  color: rgba(2, 2, 2, 0.64);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  overflow: hidden;
  opacity: 0.7;
  width: auto;
  min-width: auto;
  max-width: none;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .bottom-fixed-menu .menu-anchor {
    padding: 6px 10px;
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  .bottom-fixed-menu .menu-anchor {
    padding: 4px 8px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 6px;
  }
}
@media (max-width: 480px) {
  .bottom-fixed-menu .menu-anchor {
    padding: 3px 6px;
    font-size: 13px;
    line-height: 18px;
    border-radius: 5px;
  }
}
@media (max-width: 360px) {
  .bottom-fixed-menu .menu-anchor {
    padding: 2px 4px;
    font-size: 12px;
    line-height: 16px;
    border-radius: 4px;
  }
}
.bottom-fixed-menu .menu-anchor:hover {
  color: #222;
  opacity: 0.9;
  transform: translateY(-1px);
}
.bottom-fixed-menu .menu-anchor.active {
  background-color: rgba(2, 2, 2, 0.04);
  color: #222;
  opacity: 1;
}
.bottom-fixed-menu .menu-anchor.changing-side {
  animation: changeSide 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
.bottom-fixed-menu .menu-anchor.shift-left {
  animation: shiftLeft 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
.bottom-fixed-menu .menu-anchor.shift-right {
  animation: shiftRight 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
.bottom-fixed-menu .menu-anchor.fade-in-initial {
  animation: fadeInInitial 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
@media (max-width: 768px) {
  .bottom-fixed-menu .menu-anchor {
    padding: 6px 8px;
    font-size: 14px;
  }
}
.bottom-fixed-menu.on-dark-background .menu-anchor {
  color: #979797;
  opacity: 0.7;
}
.bottom-fixed-menu.on-dark-background .menu-anchor:hover {
  color: #e5e5e5;
  opacity: 0.9;
}
.bottom-fixed-menu.on-dark-background .menu-anchor.active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.16);
  opacity: 1;
}
.bottom-fixed-menu.on-dark-background .progress-bar {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.16), rgb(255, 255, 255));
}
.bottom-fixed-menu .contact-button-container {
  position: absolute;
  bottom: 12px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .bottom-fixed-menu .contact-button-container {
    bottom: 10px;
  }
}
@media (max-width: 480px) {
  .bottom-fixed-menu .contact-button-container {
    bottom: 8px;
  }
}
@media (max-width: 360px) {
  .bottom-fixed-menu .contact-button-container {
    bottom: 6px;
  }
}
@media (max-width: 1024px) {
  .bottom-fixed-menu #bottom-contact-btn {
    padding: 16px 32px !important;
    font-size: 15px !important;
  }
}
@media (max-width: 768px) {
  .bottom-fixed-menu #bottom-contact-btn {
    padding: 16px 32px !important;
    font-size: 14px !important;
  }
}
@media (max-width: 480px) {
  .bottom-fixed-menu #bottom-contact-btn {
    padding: 12px 24px !important;
    font-size: 13px !important;
  }
}
@media (max-width: 360px) {
  .bottom-fixed-menu #bottom-contact-btn {
    padding: 10px 20px !important;
    font-size: 12px !important;
  }
}
.bottom-fixed-menu #bottom-contact-btn.pulse {
  animation: pulse 0.6s ease-in-out;
}
.bottom-fixed-menu .progress-bar-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(2, 2, 2, 0.16);
  overflow: hidden;
}
.bottom-fixed-menu .progress-bar {
  height: 100%;
  background: linear-gradient(to right, rgba(2, 2, 2, 0.16), rgb(2, 2, 2));
  width: 0%;
  transition: width 0.1s ease;
}

.dropdown-trigger {
  position: relative;
}
.dropdown-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 3px solid currentColor;
  opacity: 0.6;
}
.dropdown-trigger:hover::after {
  opacity: 1;
}

.anchor-dropdown {
  position: absolute;
  bottom: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1001;
  min-width: 120px;
  overflow: hidden;
}
.anchor-dropdown.anchor-dropdown-left {
  left: 0;
  transform: translateY(-8px);
}
.anchor-dropdown.anchor-dropdown-right {
  right: 0;
  transform: translateY(-8px);
}
.anchor-dropdown .menu-anchor {
  display: block !important;
  width: 100%;
  padding: 8px 12px;
  margin: 0;
  border-radius: 0;
  transition: background-color 0.2s ease;
}
.anchor-dropdown .menu-anchor:hover {
  background-color: rgba(0, 0, 0, 0.05);
  transform: none;
}
.anchor-dropdown .menu-anchor:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.anchor-dropdown .menu-anchor:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.bottom-fixed-menu.on-dark-background .anchor-dropdown {
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bottom-fixed-menu.on-dark-background .anchor-dropdown .menu-anchor {
  color: rgba(255, 255, 255, 0.8);
}
.bottom-fixed-menu.on-dark-background .anchor-dropdown .menu-anchor:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: rgb(255, 255, 255);
}
.bottom-fixed-menu.on-dark-background .dropdown-trigger::after {
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

@keyframes changeSide {
  0% {
    transform: translateX(0) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateX(-8px) scale(0.95);
    opacity: 0.4;
  }
  50% {
    transform: translateX(0) scale(0.9);
    opacity: 0.1;
  }
  75% {
    transform: translateX(8px) scale(0.95);
    opacity: 0.4;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}
@keyframes shiftLeft {
  0% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-3px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }
}
@keyframes shiftRight {
  0% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(3px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }
}
@keyframes fadeInInitial {
  0% {
    transform: translateY(5px) scale(0.95);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
}
@keyframes slideUpFromBottom {
  0% {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
    opacity: 0.8;
  }
  80% {
    transform: translateX(-50%) translateY(2px);
    opacity: 0.95;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.24);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0px 12px 24px 0px rgba(8, 255, 140, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.24);
  }
}
.bottom-fixed-menu {
  animation: slideUpFromBottom 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.bottom-fixed-menu ~ .fixed-cta,
body:has(.bottom-fixed-menu) .fixed-cta {
  display: none;
}

.site-footer {
  background: #000000;
  padding: 120px 0 40px;
  color: white;
  text-align: center;
}
.site-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .site-footer .footer-container {
    padding: 0 20px;
  }
}
.site-footer .footer-logo {
  margin-bottom: 60px;
}
.site-footer .footer-logo .footer-logo-img {
  position: relative;
  z-index: 1;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}
@media (max-width: 480px) {
  .footer-social-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.footer-social-buttons .footer-social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer-social-buttons .footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.footer-social-buttons .footer-social-btn .footer-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
@media (max-width: 480px) {
  .footer-social-buttons .footer-social-btn {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 160px;
    justify-content: center;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.footer-bottom .footer-copyright p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.footer-bottom .footer-legal {
  display: flex;
  gap: 24px;
}
@media (max-width: 480px) {
  .footer-bottom .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}
.footer-bottom .footer-legal .footer-legal-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-bottom .footer-legal .footer-legal-link:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer-bottom .footer-legal .footer-legal-link .footer-icon-small {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1);
}
.footer-bottom .footer-legal .footer-legal-link:hover .footer-icon-small {
  opacity: 0.8;
}

html, body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s ease, opacity 0.5s ease;
}
.loading-screen.loading {
  background: #ffffff;
}
.loading-screen .loading-content {
  text-align: center;
  transition: color 0.5s ease;
  position: relative;
  z-index: 2;
}
.loading-screen.loading .loading-content {
  color: #000000;
}
.loading-screen .loading-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 40px;
  filter: brightness(0) invert(1);
  transition: filter 0.5s ease;
}
@media (max-width: 768px) {
  .loading-screen .loading-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
  }
}
.loading-screen.loading .loading-logo {
  filter: brightness(0) invert(0);
}
.loading-screen .loading-title {
  font-family: "Cal Sans", sans-serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 8px;
  transition: color 0.5s ease;
}
@media (max-width: 768px) {
  .loading-screen .loading-title {
    font-size: 32px;
    margin-bottom: 4px;
  }
}
.loading-screen .loading-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0.8;
  transition: color 0.5s ease;
}
@media (max-width: 768px) {
  .loading-screen .loading-subtitle {
    font-size: 16px;
  }
}
.loading-screen .loading-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #ffffff;
  z-index: 1;
}

.legal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.legal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.legal-overlay .legal-overlay-content {
  background: #111111;
  border: 1px solid #333333;
  border-radius: 16px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.legal-overlay.active .legal-overlay .legal-overlay-content {
  transform: scale(1);
}
@media (max-width: 768px) {
  .legal-overlay .legal-overlay-content {
    width: 95%;
    max-height: 95vh;
    border-radius: 12px;
  }
}
.legal-overlay .legal-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 32px 24px;
  border-bottom: 1px solid #333333;
}
@media (max-width: 768px) {
  .legal-overlay .legal-overlay-header {
    padding: 24px 20px 20px;
  }
}
.legal-overlay .legal-overlay-header .legal-overlay-title {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 768px) {
  .legal-overlay .legal-overlay-header .legal-overlay-title {
    font-size: 24px;
  }
}
.legal-overlay .legal-overlay-header .legal-overlay-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.legal-overlay .legal-overlay-header .legal-overlay-close:hover {
  background-color: #333333;
}
.legal-overlay .legal-overlay-header .legal-overlay-close .close-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}
.legal-overlay .legal-overlay-header .legal-overlay-close:hover .close-icon {
  filter: brightness(0) invert(0.8);
}
.legal-overlay .legal-overlay-body {
  padding: 32px;
}
@media (max-width: 768px) {
  .legal-overlay .legal-overlay-body {
    padding: 20px;
  }
}
.legal-overlay .legal-overlay-body .legal-section {
  margin-bottom: 32px;
}
.legal-overlay .legal-overlay-body .legal-section:last-child {
  margin-bottom: 0;
}
.legal-overlay .legal-overlay-body .legal-section .legal-section-title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
}
@media (max-width: 768px) {
  .legal-overlay .legal-overlay-body .legal-section .legal-section-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.legal-overlay .legal-overlay-body .legal-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #d1d5db;
  margin: 0 0 12px 0;
}
.legal-overlay .legal-overlay-body .legal-section p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .legal-overlay .legal-overlay-body .legal-section p {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.legal-overlay .legal-overlay-body .legal-section p strong {
  color: #ffffff;
  font-weight: 600;
}
.legal-overlay .legal-overlay-body .legal-section p a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}
.legal-overlay .legal-overlay-body .legal-section p a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 80px 0 30px;
  }
  .site-footer .footer-logo {
    margin-bottom: 40px;
  }
  .site-footer .footer-social-buttons {
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: 60px 0 20px;
  }
  .site-footer .footer-logo {
    margin-bottom: 30px;
  }
  .site-footer .footer-logo .logo-glow::before {
    width: 150px;
    height: 150px;
  }
  .site-footer .footer-social-buttons {
    margin-bottom: 40px;
  }
}
/* Menu mobile fixe en bas */
.mobile-bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 24px;
  z-index: 1000;
  display: none; /* Caché par défaut, visible en mobile */
  transform: translateY(100%); /* Commence hors de l'écran */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* Classe pour faire apparaître le menu */
  /* Classe pour faire disparaître le menu */
}
@media (max-width: 768px) {
  .mobile-bottom-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(100%); /* Commence caché même sur mobile */
  }
}
.mobile-bottom-menu.visible {
  transform: translateY(0);
}
.mobile-bottom-menu.hidden {
  transform: translateY(100%);
}

/* Bouton principal qui s'élargit */
.mobile-main-btn {
  flex: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Bouton menu collé à droite */
.mobile-menu-btn {
  width: 56px;
  height: 56px;
  background: #fff;
  border: 2px solid rgba(2, 2, 2, 0.12);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  /* Responsive pour différentes tailles d'écran */
}
.mobile-menu-btn .mobile-menu-icon span {
  background: #000000;
}
.mobile-menu-btn:active {
  transform: scale(0.95);
}
@media (max-width: 480px) {
  .mobile-menu-btn {
    width: 52px;
    height: 52px;
  }
}
@media (max-width: 360px) {
  .mobile-menu-btn {
    width: 48px;
    height: 48px;
  }
}

.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 4px;
}
.mobile-menu-icon span {
  width: 20px;
  height: 2px;
  background: #222;
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* Animation du bouton quand le menu est ouvert */
.mobile-menu-btn.active .mobile-menu-icon span {
  background: #222;
}
.mobile-menu-btn.active .mobile-menu-icon span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.mobile-menu-btn.active .mobile-menu-icon span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active .mobile-menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Menu mobile en grille */
.mobile-menu {
  position: fixed;
  bottom: 0px; /* Au-dessus du menu fixe */
  left: 24px;
  right: 24px;
  background: #fff;
  border: 2px solid rgba(2, 2, 2, 0.12);
  border-radius: 8px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(2, 2, 2, 0.12);
}
.mobile-menu.active {
  transform: translateY(-50%);
}

.mobile-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  background: #ffffff;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
}

.mobile-menu-anchor {
  padding: 12px;
  color: #222;
  border: 1px solid rgba(2, 2, 2, 0.12);
  border-radius: 4px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-anchor.active {
  background: rgba(2, 2, 2, 0.04);
  color: rgba(2, 2, 2, 0.12);
}

/* Affichage du menu mobile en responsive */
@media (max-width: 768px) {
  .mobile-bottom-menu {
    display: flex; /* Visible en mobile */
  }
  .mobile-menu {
    display: block;
  }
  /* Cacher le menu desktop */
  .bottom-fixed-menu {
    display: none !important;
  }
}
.heading .title .subtitle {
  opacity: 0.4;
}

.black-section .heading .title .subtitle {
  opacity: 0.52;
}

@media (max-width: 768px) {
  #services .heading .title .subtitle,
  #method .heading .title .subtitle,
  #testimonials .heading .title .subtitle,
  #faq .heading .title .subtitle {
    opacity: 0.4;
    text-align: left;
  }
  .black-section .heading .title .subtitle {
    opacity: 0.52;
    text-align: left;
  }
}/*# sourceMappingURL=styles.css.map */