.success-popup{position:fixed;inset:0;z-index:9999;display:none;align-items:center;justify-content:center;padding:20px;background:rgba(0,0,0,.75);backdrop-filter:blur(6px)}
.success-popup.is-visible{display:flex}
.success-popup-card{position:relative;width:min(430px,100%);padding:42px 32px 32px;border:1px solid transparent;border-radius:22px;background:linear-gradient(#151515,#151515) padding-box,linear-gradient(90deg,#b32dfd,#4b6be0) border-box;color:#fff;text-align:center;box-shadow:0 24px 80px rgba(0,0,0,.5)}
.success-popup-icon{display:flex;align-items:center;justify-content:center;width:64px;height:64px;margin:0 auto 22px;border-radius:50%;background:linear-gradient(135deg,#b32dfd,#4b6be0);color:#fff;font-size:32px}
.success-popup-card h3{margin-bottom:12px;font-family:"DM Sans",sans-serif;font-size:28px;font-weight:700;line-height:38px}
.success-popup-card p{margin-bottom:26px;color:#cfcfd5;font-size:16px;line-height:26px}
.success-popup-done{width:130px;height:48px;border:0;border-radius:999px;background:linear-gradient(90deg,#b32dfd,#4b6be0);color:#fff;font-weight:600;cursor:pointer}
.success-popup-close{position:absolute;top:14px;right:16px;border:0;background:transparent;color:#fff;font-size:28px;line-height:1;cursor:pointer}
.success-popup button:hover{transform:none}
@media(max-width:767px){.success-popup-card{padding:38px 22px 26px;border-radius:18px}.success-popup-card h3{font-size:24px;line-height:32px}}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: black;
  overflow-x: hidden;
  font-family: Inter, sans-serif;
}

.hero-title,
.hero-description {
  font-family: "DM Sans", sans-serif;
}

/* Keep the hero intact and use a tighter, consistent rhythm thereafter. */
body > section:not(:first-of-type) {
  padding-top: 46px !important;
  padding-bottom: 46px !important;
}

@media (min-width: 768px) {
  body > section:not(:first-of-type) {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
}

@media (min-width: 1024px) {
  body > section:not(:first-of-type) {
    padding-top: 66px !important;
    padding-bottom: 66px !important;
  }
}

button {
  transition: 0.3s;
}

button:hover {
  transform: translateY(-4px);
}

.phone-slider {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.project-slider {
  overflow: hidden;
  width: 100%;
}

.project-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: moveCards 80s linear infinite;
}

.project-card {
  width: 380px;
  height: 720px;
  background: #ececf4;
  border-radius: 18px;
  padding: 40px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-card h3 {
  font-size: 38px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-card p {
  text-align: center;
  color: #9a9aab;
  font-size: 16px;
  line-height: 1.8;
}

.phone {
  width: 220px;
  height: 340px;
  margin-top: 30px;
  margin-bottom: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone img {
  margin-top: 50px;
  width: 120%;
  height: auto;
  object-fit: contain;
}

.project-card button {
  width: 180px;
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b62eff, #5a73ff);
  color: white;
  font-weight: 600;
}

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

.project-slider:hover .project-track {
  animation-play-state: paused;
}

@media (min-width: 1024px) {
  .project-card h3 {
    width: 100%;
    min-height: 38px;
    font-size: clamp(20px, 1.75vw, 28px);
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
  }

  .project-card p {
    width: 100%;
    min-height: 43px;
    margin-top: 10px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .project-card .phone {
    width: 260px;
    height: 410px;
    margin: 18px 0;
    flex-shrink: 0;
  }

  .project-card .phone img {
    width: auto;
    max-width: 120%;
    max-height: 100%;
    margin-top: 0;
  }

  .project-card button {
    margin-top: auto;
    flex-shrink: 0;
  }
}

@media (max-width: 1023px) {
  .project-card { width: 320px; height: 650px; padding: 30px; }
  .project-card h3 { font-size: 34px; }
  .phone { width: 190px; height: 300px; margin-bottom: 60px; }
}

@media (max-width: 767px) {
  .prev,
  .next { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; }
  .faq-btn { align-items: flex-start; }
  .faq-icon { width: 34px; height: 34px; min-width: 34px; min-height: 34px; flex-shrink: 0; }
  .project-track { gap: 18px; }
  .project-card { width: min(280px, calc(100vw - 40px)); height: 560px; padding: 24px; overflow: hidden; }
  .project-card h3 {
    width: 100%;
    min-height: 31px;
    font-size: clamp(17px, 6vw, 24px);
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
  }
  .project-card p {
    width: 100%;
    min-height: 38px;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .phone { width: 190px; height: 300px; margin: 12px 0 6px; flex-shrink: 0; }
  .phone img { width: auto; max-width: 120%; max-height: 100%; margin-top: 0; }
  .project-card button { margin-top: auto; flex-shrink: 0; }
}

@media (max-width: 374px) {
  .project-card { width: min(252px, calc(100vw - 32px)); height: 530px; padding: 22px; }
  .project-card h3 { font-size: clamp(15px, 5.2vw, 19px); }
  .phone { width: 165px; height: 260px; }
}

@media (min-width: 1024px) {
  .feature-card {
    position: relative;
    border-right: 0 !important;
  }

  .feature-card::after {
    content: "";
    position: absolute;
    top: 28px;
    right: 0;
    bottom: 28px;
    width: 1px;
    background: #7047a8;
  }
}



/* ========================================
   WHY CHOOSE US SECTION
======================================== */

/* Gradient border container */
body > section:nth-of-type(2) > div > div {
  border: 1px solid transparent !important;
  border-radius: 22px;
  background:
    linear-gradient(#161616, #161616) padding-box,
    linear-gradient(90deg, #b32dfd 0%, #4b6be0 100%) border-box;
}

/* Card headings */
body > section:nth-of-type(2) > div > div > div > h3 {
  font-family: "DM Sans", sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 20px !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

/* Card descriptions */
body > section:nth-of-type(2) > div > div > div > p {
  font-family: "DM Sans", sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

/* Desktop */
@media (min-width: 1024px) {
  /* Reduce card height */
  body > section:nth-of-type(2) > div > div > div {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  /* Remove original full-height dividers */
  body > section:nth-of-type(2) .feature-card {
    position: relative;
    border-right: 0 !important;
    border-bottom: 0 !important;
  }

  /* Short gradient divider lines */
  body > section:nth-of-type(2) .feature-card::after {
    content: "";
    position: absolute;
    top: 32px;
    right: 0;
    bottom: 32px;
    width: 1px;
    background: linear-gradient(
      180deg,
      rgba(179, 45, 253, 0.65) 0%,
      rgba(75, 107, 224, 0.65) 100%
    );
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  body > section:nth-of-type(2) > div > div > div {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  body > section:nth-of-type(2) > div > div > div > h3 {
    font-size: 22px !important;
    line-height: 24px !important;
  }

  body > section:nth-of-type(2) > div > div > div > p {
    font-size: 16px !important;
    line-height: 24px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  body > section:nth-of-type(2) {
    padding: 48px 16px !important;
  }

  body > section:nth-of-type(2) > div {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  body > section:nth-of-type(2) > div > div {
    border-radius: 16px;
  }

  body > section:nth-of-type(2) > div > div > div {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    text-align: left;
  }

  body > section:nth-of-type(2) > div > div > div > h3 {
    font-size: 20px !important;
    line-height: 24px !important;
    white-space: normal !important;
  }

  body > section:nth-of-type(2) > div > div > div > p {
    font-size: 15px !important;
    line-height: 22px !important;
  }
}

/* ========================================
   APP FEATURES SECTION HEADING
======================================== */

body > section:nth-of-type(3) h2 {
  font-family: "DM Sans", sans-serif !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 46px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  body > section:nth-of-type(3) h2 {
    font-size: 32px !important;
    line-height: 42px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  body > section:nth-of-type(3) h2 {
    font-size: 28px !important;
    line-height: 36px !important;
    letter-spacing: 0 !important;
  }
}

/* ========================================
   CUSTOMER + OPERATOR + ADMIN SECTIONS
======================================== */

body
  > section:is(
    :nth-of-type(4),
    :nth-of-type(5),
    :nth-of-type(6)
  )
  h2 {
  font-family: "DM Sans", sans-serif !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 46px !important;
  letter-spacing: 0 !important;
}

/* Feature descriptions */
body
  > section:is(
    :nth-of-type(4),
    :nth-of-type(5),
    :nth-of-type(6)
  )
  h4
  + p {
  font-family: "DM Sans", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 30px !important;
  letter-spacing: 0 !important;
}

/* Gradient check circles */
body
  > section:is(
    :nth-of-type(4),
    :nth-of-type(5),
    :nth-of-type(6)
  )
  h2
  + div
  > div
  > div:first-child {
  position: relative;
  width: 20px !important;
  min-width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  border-radius: 50%;
  background: linear-gradient(135deg, #b32dfd, #4b6be0) !important;
  color: transparent !important;
  font-size: 0 !important;
}

/* White checkmarks */
body
  > section:is(
    :nth-of-type(4),
    :nth-of-type(5),
    :nth-of-type(6)
  )
  h2
  + div
  > div
  > div:first-child::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

/* Talk to Sales gradient border */
body
  > section:is(
    :nth-of-type(4),
    :nth-of-type(5),
    :nth-of-type(6)
  )
  button[onclick]:last-child {
  border: 1.5px solid transparent !important;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(90deg, #b32dfd, #4b6be0) border-box !important;
}

/* Phone navigation buttons */
body
  > section:is(
    :nth-of-type(4),
    :nth-of-type(5),
    :nth-of-type(6)
  )
  :is(.prev, .next) {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  background: linear-gradient(90deg, #b32dfd, #4b6be0) !important;
  color: transparent !important;
  font-size: 0 !important;
}

/* White arrow icons */
body
  > section:is(
    :nth-of-type(4),
    :nth-of-type(5),
    :nth-of-type(6)
  )
  :is(.prev, .next)::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

body
  > section:is(
    :nth-of-type(4),
    :nth-of-type(5),
    :nth-of-type(6)
  )
  .prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

body
  > section:is(
    :nth-of-type(4),
    :nth-of-type(5),
    :nth-of-type(6)
  )
  .next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  body
    > section:is(
      :nth-of-type(4),
      :nth-of-type(5),
      :nth-of-type(6)
    )
    h2 {
    font-size: 32px !important;
    line-height: 42px !important;
  }

  body
    > section:is(
      :nth-of-type(4),
      :nth-of-type(5),
      :nth-of-type(6)
    )
    h4
    + p {
    font-size: 17px !important;
    line-height: 28px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  body
    > section:is(
      :nth-of-type(4),
      :nth-of-type(5),
      :nth-of-type(6)
    )
    h2 {
    font-size: 28px !important;
    line-height: 36px !important;
    text-align: center !important;
  }

  body
    > section:is(
      :nth-of-type(4),
      :nth-of-type(5),
      :nth-of-type(6)
    )
    h4
    + p {
    font-size: 16px !important;
    line-height: 26px !important;
    text-align: center;
  }

  body
    > section:is(
      :nth-of-type(4),
      :nth-of-type(5),
      :nth-of-type(6)
    )
    :is(.prev, .next) {
    width: 36px !important;
    height: 36px !important;
  }
}

/* ========================================
   BROWSE FEATURES GRID SECTION
======================================== */

/* Section heading */
body > section:nth-of-type(7) > div > div:first-child h2 {
  font-family: "DM Sans", sans-serif !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 46px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

/* Section introduction */
body > section:nth-of-type(7) > div > div:first-child > p {
  font-family: "DM Sans", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 30px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

/* Feature cards */
body
  > section:nth-of-type(7)
  > div
  > div:nth-child(2)
  > div {
  height: auto !important;
  min-height: 360px;
  border: 1px solid transparent !important;
  background:
    linear-gradient(#171717, #171717) padding-box,
    linear-gradient(90deg, #b32dfd 0%, #4b6be0 100%) border-box !important;
}

/* Card headings */
body
  > section:nth-of-type(7)
  > div
  > div:nth-child(2)
  > div
  > h3 {
  font-family: "DM Sans", sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 38px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

/* Card descriptions */
body
  > section:nth-of-type(7)
  > div
  > div:nth-child(2)
  > div
  > p {
  font-family: "DM Sans", sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 30px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  body > section:nth-of-type(7) > div > div:first-child h2 {
    font-size: 32px !important;
    line-height: 42px !important;
  }

  body > section:nth-of-type(7) > div > div:first-child > p {
    font-size: 17px !important;
    line-height: 28px !important;
  }

  body
    > section:nth-of-type(7)
    > div
    > div:nth-child(2)
    > div
    > h3 {
    font-size: 24px !important;
    line-height: 34px !important;
  }

  body
    > section:nth-of-type(7)
    > div
    > div:nth-child(2)
    > div
    > p {
    font-size: 17px !important;
    line-height: 28px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  body > section:nth-of-type(7) {
    padding: 56px 16px !important;
  }

  body > section:nth-of-type(7) > div {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  body > section:nth-of-type(7) > div > div:first-child h2 {
    font-size: 28px !important;
    line-height: 36px !important;
  }

  body > section:nth-of-type(7) > div > div:first-child > p {
    font-size: 16px !important;
    line-height: 26px !important;
  }

  body
    > section:nth-of-type(7)
    > div
    > div:nth-child(2)
    > div {
    min-height: 0;
    padding: 30px 24px !important;
    border-radius: 16px;
  }

  body
    > section:nth-of-type(7)
    > div
    > div:nth-child(2)
    > div
    > h3 {
    font-size: 22px !important;
    line-height: 30px !important;
  }

  body
    > section:nth-of-type(7)
    > div
    > div:nth-child(2)
    > div
    > p {
    font-size: 16px !important;
    line-height: 26px !important;
  }
}




/* Reduce feature card size */
body > section:nth-of-type(7) > div {
  max-width: 1120px !important;
}

body > section:nth-of-type(7) > div > div:nth-child(2) {
  gap: 20px !important;
}

body
  > section:nth-of-type(7)
  > div
  > div:nth-child(2)
  > div {
  min-height: 310px !important;
  padding: 26px 24px !important;
}

/* Reduce icon area */
body
  > section:nth-of-type(7)
  > div
  > div:nth-child(2)
  > div
  > div:first-child {
  width: 70px !important;
  height: 70px !important;
  margin-bottom: 20px !important;
}

body
  > section:nth-of-type(7)
  > div
  > div:nth-child(2)
  > div
  > div:first-child
  img {
  width: 70px !important;
  height: 70px !important;
}

/* Reduce space below card heading */
body
  > section:nth-of-type(7)
  > div
  > div:nth-child(2)
  > div
  > h3 {
  margin-bottom: 12px !important;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  body
    > section:nth-of-type(7)
    > div
    > div:nth-child(2)
    > div {
    min-height: 300px !important;
    padding: 24px 22px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  body
    > section:nth-of-type(7)
    > div
    > div:nth-child(2)
    > div {
    min-height: 0 !important;
    padding: 26px 20px !important;
  }

  body
    > section:nth-of-type(7)
    > div
    > div:nth-child(2)
    > div
    > div:first-child {
    width: 64px !important;
    height: 64px !important;
    margin-bottom: 16px !important;
  }

  body
    > section:nth-of-type(7)
    > div
    > div:nth-child(2)
    > div
    > div:first-child
    img {
    width: 64px !important;
    height: 64px !important;
  }
}




/* ========================================
   TESTIMONIAL SECTION
======================================== */

/* Section heading */
body > section:nth-of-type(8) > div > div:first-child h2 {
  font-family: "DM Sans", sans-serif !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 46px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

/* Section introduction */
body > section:nth-of-type(8) > div > div:first-child > p {
  font-family: "DM Sans", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 30px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

/* Gradient border on every testimonial card */
body > section:nth-of-type(8) #testimonialTrack > div {
  border: 1px solid transparent !important;
  background:
    linear-gradient(#111111, #111111) padding-box,
    linear-gradient(90deg, #b32dfd 0%, #4b6be0 100%) border-box !important;
}

/* Gradient slider lines */
body > section:nth-of-type(8) .dot {
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #b32dfd 0%,
    #4b6be0 100%
  ) !important;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  body > section:nth-of-type(8) > div > div:first-child h2 {
    font-size: 32px !important;
    line-height: 42px !important;
  }

  body > section:nth-of-type(8) > div > div:first-child > p {
    font-size: 17px !important;
    line-height: 28px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  body > section:nth-of-type(8) > div > div:first-child h2 {
    font-size: 28px !important;
    line-height: 36px !important;
  }

  body > section:nth-of-type(8) > div > div:first-child > p {
    font-size: 16px !important;
    line-height: 26px !important;
  }
}




/* ========================================
   FAQ SECTION
======================================== */

/* Main FAQ heading */
body > section:nth-of-type(9) > div > div:first-child h2 {
  font-family: "DM Sans", sans-serif !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 46px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

/* Thin gradient border for closed cards */
body > section:nth-of-type(9) .faq-item {
  border: 1px solid transparent !important;
  background:
    linear-gradient(#181818, #181818) padding-box,
    linear-gradient(90deg, #b32dfd 0%, #4b6be0 100%) border-box !important;
}

/* Thicker gradient border for open card */
body
  > section:nth-of-type(9)
  .faq-item:has(.faq-content:not(.hidden)) {
  border: 3px solid transparent !important;
}

/* Question typography */
body > section:nth-of-type(9) .faq-item h3 {
  font-family: "DM Sans", sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 34px !important;
  letter-spacing: 0 !important;
}

/* Answer typography */
body > section:nth-of-type(9) .faq-content p {
  font-family: "DM Sans", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 30px !important;
  letter-spacing: 0 !important;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  body > section:nth-of-type(9) > div > div:first-child h2 {
    font-size: 32px !important;
    line-height: 42px !important;
  }

  body > section:nth-of-type(9) .faq-item h3 {
    font-size: 22px !important;
    line-height: 32px !important;
  }

  body > section:nth-of-type(9) .faq-content p {
    font-size: 17px !important;
    line-height: 28px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  body > section:nth-of-type(9) > div > div:first-child h2 {
    font-size: 28px !important;
    line-height: 36px !important;
  }

  body > section:nth-of-type(9) .faq-item h3 {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  body > section:nth-of-type(9) .faq-content p {
    font-size: 16px !important;
    line-height: 26px !important;
  }

  body
    > section:nth-of-type(9)
    .faq-item:has(.faq-content:not(.hidden)) {
    border-width: 2px !important;
  }
}

/* White Clutch logo with gradient border */
.clutch-rating {
  border: 1px solid transparent !important;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(90deg, #b32dfd 0%, #4b6be0 100%) border-box;
}

.clutch-logo {
  filter: brightness(0) invert(1) !important;
}

/* CTA double arrows */
.cta-double-arrow {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin-left: 2px;
}

.cta-double-arrow i {
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1.4px solid #000;
  border-right: 1.4px solid #000;
  transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 767px) {
  .cta-double-arrow i {
    width: 6px;
    height: 6px;
    border-width: 1.2px;
  }
}

/* Testimonial slider lines */
#testimonialTrack + div .testimonial-dot {
  display: block;
  width: 22px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #8a8a96 !important;
  cursor: pointer;
  opacity: 0.7;
  transition:
    width 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease;
}

#testimonialTrack + div .testimonial-dot.is-active {
  width: 30px;
  background: linear-gradient(
    90deg,
    #b32dfd 0%,
    #4b6be0 100%
  ) !important;
  opacity: 1;
}

#testimonialTrack + div .testimonial-dot:hover {
  transform: none;
  opacity: 1;
}

/* Testimonial slider lines */
#testimonialTrack + div .testimonial-dot {
  display: block;
  width: 22px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #8a8a96 !important;
  cursor: pointer;
  opacity: 0.7;
  transition:
    width 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease;
}

#testimonialTrack + div .testimonial-dot.is-active {
  width: 30px;
  background: linear-gradient(
    90deg,
    #b32dfd 0%,
    #4b6be0 100%
  ) !important;
  opacity: 1;
}

#testimonialTrack + div .testimonial-dot:hover {
  transform: none;
  opacity: 1;
}
/* Mobile: tighten the space between the device heading and phone image */
@media (max-width: 767px) {
  body > section:nth-of-type(3) {
    padding-bottom: 34px !important;
  }

  body > section:nth-of-type(4) {
    padding-top: 30px !important;
  }
}
/* Contact rows: keep mail, phone, and location icons in one vertical column */
div:has(> div > .contact-icon) {
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

div:has(> .contact-icon) {
  justify-content: flex-start !important;
  align-items: flex-start !important;
  text-align: left;
}

.contact-icon {
  width: 20px !important;
  min-width: 20px !important;
  flex: 0 0 20px !important;
  margin-top: 2px;
}

.contact-icon + span {
  display: inline-block;
  text-align: left;
  line-height: 1.35;
}

@media (min-width: 1024px) {
  div:has(> div > .contact-icon) {
    margin-left: 0;
    margin-right: 0;
  }
}
