* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", Arial, sans-serif;
}
.fs-20 {
  font-size: 20px;
}
.fs-14 {
  font-size: 14px;
}
.text-center {
  text-align: center;
}
.flex {
  display: flex;
  justify-content: space-between;
}
.justify-between {
  justify-content: space-between;
}
.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gap-15 {
  gap: 15px;
}
:root {
  --angle: 45deg;
}
/* Banner Section Styles */
.banner {
  background-image: url("../assets/images/banner-1.53174dba0c7f.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.logo img {
  width: 36px;
  height: 36px;
}
.navbar {
  display: flex;
  gap: 24px;
}
.navbar-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background: #23123a; /* Example background */
  color: #fff; /* Example text color */
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 12px 18px;
  z-index: 10;
  font-size: 1rem;
  white-space: nowrap;
}

.navbar-dropdown:hover .dropdown-menu,
.navbar-dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 6px 0;
  border-radius: 4px;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: #f66b0e;
  color: #fff;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.2s;
}
.navbar a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.get-in-touch {
  background: linear-gradient(90deg, #f7941d 0%, #ed1e79 100%);
  color: #fff;
  padding: 10px 28px;
  border-radius: 24px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  font-size: 18px;
}

.profile-badges {
  display: flex;
  gap: 8px;
  margin-left: 24px;
}
/* .badge {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
      color: #fff;
    } */
.badge.pink {
  background: #c13b8a;
}
.badge.yellow {
  background: #f5c242;
  color: #222;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  gap: 15px;
}
.banner-left {
  max-width: 520px;
}
.banner-left h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}
.banner-left .highlight {
  color: #ff7a2f;
}
.banner-left p {
  font-size: 1.1rem;
  color: #e0d6f7;
  margin-bottom: 32px;
}
.banner-buttons {
  display: flex;
  gap: 18px;
}

.btn.orange {
  /* background: #c46200; */
  color: #fff;
}

.banner-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-right-img {
  width: 100%;
}
.circle-graphic {
  position: relative;
  width: 320px;
  height: 320px;
}
.circle-graphic .icon {
  position: absolute;
  width: 64px;
  height: 64px;
  background: #23123a;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
}
.circle-graphic .icon img {
  width: 40px;
  height: 40px;
}
.circle-graphic .icon.center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ff7a2f;
}
.circle-graphic .icon.top {
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.circle-graphic .icon.right {
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.circle-graphic .icon.bottom {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.circle-graphic .icon.left {
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.circle-graphic .icon.top-left {
  left: 15%;
  top: 15%;
}
.circle-graphic .icon.top-right {
  right: 15%;
  top: 15%;
}
.circle-graphic .icon.bottom-left {
  left: 15%;
  bottom: 15%;
}
.circle-graphic .icon.bottom-right {
  right: 15%;
  bottom: 15%;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-top: 18px;
}

.trusted-logos img {
  width: 120px;
  opacity: 0.7;
  filter: grayscale(1);
}
/* border animation */
.animated-navbar-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 0 8px;
  border-radius: 32px;
  background: rgba(54, 50, 74, 0.95);
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
  min-width: 500px;
  min-height: 56px;
}

.animated-navbar-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.border-rect {
  stroke: url(#navbar-gradient);
  stroke-width: 2.5px;
  fill: none;
  stroke-dasharray: 900;
  stroke-dashoffset: 0;
  animation: navbar-border-anim 4s linear infinite;
}

@keyframes navbar-border-anim {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 900;
  }
}

/* Remove border and animation from navbar */
.navbar-pill-container {
  --angle: 0deg;
  border: 2px solid transparent;
  border-radius: 32px;
  animation: rotate-angle 8s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  box-shadow: none;
  background: linear-gradient(#3a3347 0 0) padding-box,
    conic-gradient(
        from var(--angle),
        #f66b0e 0deg,
        #f66b0e60 20deg,
        #08054554 120deg,
        #080545 180deg,
        #f60e86 220deg,
        #f60e8634 240deg,
        #1a0c19 340deg,
        #f66b0e 360deg
      )
      border-box !important;
}

.navbar {
  display: flex;
  gap: 24px;
  padding: 0 32px;
  position: relative;
  background: none;
  border: none;
  box-shadow: none;
  z-index: 2;
}

.banner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.profile-badges {
  display: flex;
  gap: 8px;
  margin-left: 24px;
}

.badge.pink {
  background: #c13b8a;
}
.badge.yellow {
  background: #f5c242;
  color: #222;
}

.banner-left {
  max-width: 520px;
}
.banner-left h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}
.banner-left .highlight {
  color: #ff7a2f;
}
.banner-left p {
  font-size: 1.1rem;
  color: #e0d6f7;
  margin-bottom: 32px;
}
.banner-buttons {
  display: flex;
  gap: 18px;
}
.btn {
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  border: none;
  display: inline-block;
}

.banner-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle-graphic {
  position: relative;
  width: 320px;
  height: 320px;
}
.circle-graphic .icon {
  position: absolute;
  width: 64px;
  height: 64px;
  background: #23123a;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
}
.circle-graphic .icon img {
  width: 40px;
  height: 40px;
}
.circle-graphic .icon.center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ff7a2f;
}
.circle-graphic .icon.top {
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.circle-graphic .icon.right {
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.circle-graphic .icon.bottom {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.circle-graphic .icon.left {
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.circle-graphic .icon.top-left {
  left: 15%;
  top: 15%;
}
.circle-graphic .icon.top-right {
  right: 15%;
  top: 15%;
}
.circle-graphic .icon.bottom-left {
  left: 15%;
  bottom: 15%;
}
.circle-graphic .icon.bottom-right {
  right: 15%;
  bottom: 15%;
}

.trusted-by {
  color: #b6a9d6;
  font-size: 1rem;
  padding: 20px;
}

.trusted-logos img {
  width: 120px;
  opacity: 0.7;
  filter: grayscale(1);
}
/* border animation */
.animated-navbar-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 0 8px;
  border-radius: 32px;
  background: rgba(54, 50, 74, 0.95);
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
  min-width: 500px;
  min-height: 56px;
}

.animated-navbar-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.border-rect {
  stroke: url(#navbar-gradient);
  stroke-width: 2.5px;
  fill: none;
  stroke-dasharray: 900;
  stroke-dashoffset: 0;
  animation: navbar-border-anim 4s linear infinite;
}

@keyframes navbar-border-anim {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 900;
  }
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  padding: 0 8px;
  line-height: 56px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar a:hover {
  color: #ffb86c;
  background: rgba(255, 255, 255, 0.04);
}

.chevron {
  font-size: 0.85em;
  margin: 2px 0px 0px 2px;
  color: #fff;
  opacity: 0.7;
  display: inline-block;
  transform: translateY(1px);
}

.smart-tools {
  background: #f8f1ee;
  padding: 40px 20px;
  text-align: center;
  font-family: "Poppins", Arial, sans-serif;
}

.tools-header {
  margin-bottom: 36px;
}

.tools-top-btn {
  /* background: #fff; */
  --angle: 0deg;
  border: 1.5px solid transparent;
  background: linear-gradient(#f8f1ee 0 0) padding-box,
    conic-gradient(
        from var(--angle),
        #f66b0e 0deg,
        #f66b0e60 20deg,
        #08054554 120deg,
        #080545 180deg,
        #f60e86 220deg,
        #f60e8634 240deg,
        #1a0c19 340deg,
        #f66b0e 360deg
      )
      border-box !important;
  animation: rotate-angle 8s linear infinite;
  color: #000 !important;
  border: 1.5px solid #f3c6e7;
  border-radius: 16px;
  padding: 6px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(193, 59, 138, 0.07);
  transition: background 0.2s;
}

.tools-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #23123a;
  margin-bottom: 8px;
}

.tools-header p {
  color: #6d5c7b;
  font-size: 18px;
  margin-bottom: 0;
}

.tool-card .orange {
  font-size: 12px;
}
.tool-card h3:first-of-type {
  font-size: 28px;
}
.tool-card {
  flex: 1 1 calc(33.333% - 10px); /* 3 columns minus gap */
  max-width: 400px;
  /* background: #fff; */
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(54, 50, 74, 0.07);
  border: 1.5px solid transparent;
  padding: 35px 25px;
  /* text-align: left; */
  transition: border 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
  --angle: 0deg;
  border: 2px solid transparent;
  background: linear-gradient(#fff 0 0) padding-box,
    conic-gradient(
        from var(--angle),
        #f66b0e 0deg,
        #f66b0e60 20deg,
        #08054554 120deg,
        #080545 180deg,
        #f60e86 220deg,
        #f60e8634 240deg,
        #1a0c19 340deg,
        #f66b0e 360deg
      )
      border-box !important;
  animation: rotate-angle 7s linear infinite;
}

.tool-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #23123a;
  margin-bottom: 10px;
}

.tool-card p {
  color: #6d5c7b;
  font-size: 1rem;
  margin-bottom: 18px;
}

.tool-card-footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: auto;
}

.tool-badge {
  background: #18122b;
  color: #fff;
  border-radius: 10px;
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 500;
}

.badge {
  display: inline-block;
  padding: 2px 0px;
  border-radius: 8px;
  font-weight: 500;
  margin-left: 4px;
}

.badge.tex {
  position: relative;
  width: 60px;
  height: auto;
  padding: 12px 16px;
}
.badge.tex p {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 16px);
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 13px;
}
.badge.orange {
  background: #c46200;
}

.badge.green {
  background: #7be495;
  color: #23123a;
}
.badge.pink {
  background: #eeb6e7;
  color: #23123a;
}
.tools-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0px 30px;
}
/* Responsive */
/* @media (max-width: 1150px) {
  .tools-cards {
    align-items: center;
    gap: 24px;
  }
  .tool-card {
    width: 90%;
    max-width: 400px;
  }
} */
@media (max-width: 992px) {
  .tool-card {
    flex: 1 1 calc(50% - 10px); /* 2 columns */
  }
}

/* For screen widths up to 600px */
@media (max-width: 600px) {
  .tools-cards {
    padding: 0px 10px;
  }
  .tool-card {
    flex: 1 1 100%; /* 1 column */
    padding: 35px 15px;
  }
}

/* Super power section  */
.super-power-section {
  background: #f8f1ee;
  padding: 40px 20px;
}

/* Process Section */
.process-section {
  background: #f8f1ee;
  padding: 30px 20px;
}

.process-section h2 {
  font-size: 42px;
  font-weight: 500;
  color: #18162a;
  margin-bottom: 36px;
  letter-spacing: -1px;
}

.process-highlight.gradient-text {
  background: linear-gradient(90deg, #f7931a 0%, #f52290 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.process-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.process-card {
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(54, 50, 74, 0.07);
  border-image-slice: 1;
  padding: 32px 24px 28px 24px;
  max-width: 260px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  --angle: 0deg;
  border: 1.5px solid transparent;
  background: linear-gradient(#fff 0 0) padding-box,
    conic-gradient(
        from var(--angle),
        #f66b0e 0deg,
        #f66b0e60 20deg,
        #08054554 120deg,
        #080545 180deg,
        #f60e86 220deg,
        #f60e8634 240deg,
        #1a0c19 340deg,
        #f66b0e 360deg
      )
      border-box !important;
  animation: rotate-angle 8s linear infinite;
}

.process-number {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, #f7931a 0%, #f52290 100%);
  color: #fff;
  border-radius: 8px;
  width: 44px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(255, 122, 47, 0.08);
}

.process-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #18162a;
  margin-bottom: 10px;
  margin-top: 48px;
}

.process-card p {
  color: #6d5c7b;
  font-size: 1rem;
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 1100px) {
  .process-card {
    width: 90%;
    max-width: 350px;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .superpower-container {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .superpower-left,
  .superpower-right {
    justify-content: center;
    min-width: 0;
    width: 100%;
  }
  .dashboard-mockup {
    margin: 0 auto;
  }
  .process-cards {
    align-items: center;
    gap: 18px;
  }
  .process-card {
    width: 90%;
    max-width: 350px;
  }
}

.case-studies-section {
  background: #fff;
  padding: 30px 20px;
}
.case-studies-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  flex-wrap: wrap;
  gap: 18px;
  margin: 40px 0px 30px 0px;
}
.case-studies-header h4 {
  font-size: 42px;
  color: #23123a;
}
.cs-highlight-orange {
  color: #ff7a2f;
  font-weight: 700;
}
.cs-top-btn {
  background: linear-gradient(90deg, #ff7a2f 60%, #eeb6e7 100%);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 10px 28px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px 0 rgba(255, 122, 47, 0.08);
  white-space: nowrap;
}
.cs-top-btn:hover {
  background: linear-gradient(90deg, #ff9a5a 60%, #eeb6e7 100%);
}

.case-studies-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  flex-wrap: wrap;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotate-angle {
  to {
    --angle: 360deg;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .case-studies-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .case-studies-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 1100px) {
  .navbar-pill-container {
    min-width: 0;
    width: 100%;
    margin: 0 8px;
  }
  .banner-header {
    flex-direction: column;
    gap: 18px;
    padding: 24px 10px 0 10px;
  }
}

.reasons-section {
  background: #fff;
  padding: 30px 20px;
}
.reasons-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.reasons-left {
  flex: 1;
  min-width: 320px;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0px;
}
.reasons-left h2 {
  font-size: 42px;
  color: #23123a;
  margin-bottom: 18px;
  line-height: 1.2;
}
.reasons-highlight-orange {
  color: #ff7a2f;
  font-weight: 700;
}
.reasons-highlight-pink {
  color: #ed1e79;
  font-weight: 700;
}
.reasons-left p {
  color: #6d5c7b;
  font-size: 1.08rem;
  margin-bottom: 28px;
}
.reasons-buttons {
  display: flex;
  gap: 16px;
}
.reasons-btn {
  padding: 10px 28px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  cursor: pointer;
}
.reasons-btn.orange {
  background: linear-gradient(90deg, #f7941d 0%, #ed1e79 100%);
  color: #fff;
}
.reasons-btn.orange:hover {
  background: #ff9a5a;
}
.reasons-btn.outline {
  color: #c13b8a;
  --angle: 0deg;
  border: 1.5px solid transparent;
  background: linear-gradient(#fff 0 0) padding-box,
    conic-gradient(
        from var(--angle),
        #f66b0e 0deg,
        #f66b0e60 20deg,
        #08054554 120deg,
        #080545 180deg,
        #f60e86 220deg,
        #f60e8634 240deg,
        #1a0c19 340deg,
        #f66b0e 360deg
      )
      border-box !important;
  animation: rotate-angle 8s linear infinite;
}
.reasons-btn.outline:hover {
  background: #eeb6e7;
  color: #23123a;
}

.reasons-right {
  flex: 1.5;
  min-width: 340px;
  display: flex;
  justify-content: flex-start;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.reasons-card {
  border-radius: 14px;
  border: 1.5px solid #ffe2d1;
  box-shadow: 0 2px 8px 0 rgba(255, 122, 47, 0.04);
  padding: 18px 14px 18px 14px;

  color: #23123a;
  min-height: 70px;
  transition: border 0.2s, box-shadow 0.2s;
  position: relative;

  --angle: 0deg;
  border: 1.5px solid transparent;
  background: linear-gradient(#fff7f2 0 0) padding-box,
    conic-gradient(
        from var(--angle),
        #f66b0e 0deg,
        #f66b0e60 20deg,
        #08054554 120deg,
        #080545 180deg,
        #f60e86 220deg,
        #f60e8634 240deg,
        #1a0c19 340deg,
        #f66b0e 360deg
      )
      border-box !important;
  animation: rotate-angle 7s linear infinite;
}

.reasons-card .reasons-icon {
  font-size: 1.35rem;
  color: #ff7a2f;
  margin-top: 2px;
}

@media (max-width: 1100px) {
  .reasons-container {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  /* .reasons-left {
      margin-right: 0;
      max-width: 100%;
      align-items: center;
      text-align: center;
    } */
  .reasons-right {
    width: 100%;
    justify-content: center;
  }
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 700px) {
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .grid-cols-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .case-studies-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Animate button  */
.animate-btn {
  border-radius: 24px;
  /* padding: 12px 24px; */
  color: white;
  --angle: 0deg;
  border: 2px solid transparent;
  background: linear-gradient(#070533 0 0) padding-box,
    conic-gradient(
        from var(--angle),
        #f66b0e 0deg,
        #f66b0e60 20deg,
        #08054554 120deg,
        #080545 180deg,
        #f60e86 220deg,
        #f60e8634 240deg,
        #1a0c19 340deg,
        #f66b0e 360deg
      )
      border-box;
  animation: rotate-angle 8s linear infinite;
}
.row {
  display: flex;
  align-items: stretch;
}
.main {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.price-row {
  background: #0c0b18;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  margin: 0;
  min-height: 44px;
}
.price-row .label {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.badge {
  background: #b35a09;
  color: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  margin-left: 12px;
  display: inline-block;
}
.side {
  flex: 1;
  background: #0c0b18;
  border-radius: 8px;
  margin-left: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 100px;
  position: relative;
}
.side .side-label {
  color: #fff;
  font-size: 13px;
  margin-bottom: 10px;
}
.side .yes-btn {
  background: #0db14b;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 22px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 2px;
}
/* Dotted connector */
.connector {
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  border-top: 2px dashed #e07a2f;
  z-index: 1;
}
.data_hq_activate_price {
  background: linear-gradient(90deg, #f7931a 0%, #f52290 100%);
  border-radius: 8px;
}
.banner-right {
  width: 100%;
}
.dashboard-card {
  border-radius: 18px;
  padding: 24px;
  color: #fff;
  position: relative;
  --angle: 0deg;
  border: 2px solid transparent;
  background: linear-gradient(#06031a 0 0) padding-box,
    conic-gradient(
        from var(--angle),
        #f66b0e 0deg,
        #f66b0e60 20deg,
        #08054554 120deg,
        #080545 180deg,
        #f60e86 220deg,
        #f60e8634 240deg,
        #1a0c19 340deg,
        #f66b0e 360deg
      )
      border-box !important;
  animation: rotate-angle 8s linear infinite;
}
.dashboard-card-inner {
  background-color: #070d27;
  padding: 10px 16px;
  border-radius: 10px;
}
.stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.stat {
  text-align: left;
  flex: 1;
}
.stat-value {
  font-size: 27px;
  letter-spacing: 1px;
}
.stat-label {
  font-size: 0.95rem;
  color: #b0b8d1;
  margin-top: 2px;
}
.progress-bar {
  display: flex;
  height: 8px;
  border-radius: 6px;
  overflow: hidden;
  margin: 10px 0 10px 0;
  background: #1a223a;
}
.progress-segment {
  height: 100%;
}
.progress-1 {
  background: #2d3a5a;
  width: 25%;
}
.progress-2 {
  background: #ff7f32;
  width: 45%;
}
.progress-3 {
  background: #b0b8d1;
  width: 15%;
}
.progress-4 {
  background: #e94f8b;
  width: 15%;
}
.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #b0b8d1;
  margin-bottom: 8px;
}
.assignees-section {
  margin: 18px 0 0 0;
}
.assignees-label {
  font-size: 1rem;
  color: #444a66;
  margin-bottom: 8px;
}
.assignees {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-right: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.more-avatars {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #10162a;
  border: 2px solid #ff7f32;
  color: #ff7f32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 6px;
  margin-right: 0;
  position: relative;
  z-index: 1;
}
.projects-section {
  margin-top: 10px;
}
.projects-label {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
}
.project-list {
  border-radius: 12px;
  padding: 12px 0;
  margin-top: 6px;
}
.project-item-1 {
  background: #ffffff1a !important;
}
.project-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  margin-bottom: 8px;
  background-color: #101636;
  padding: 12px 18px;
  transition: background 0.2s;
}
.project-item:last-child {
  border-bottom: none;
}
.project-info {
  display: flex;
  align-items: center;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 14px;
  display: inline-block;
}
.dot-blue {
  background: #4a6cf7;
}
.dot-orange {
  background: #ff7f32;
}
.dot-grey {
  background: #b0b8d1;
}
.dot-pink {
  background: #e94f8b;
}
.project-title {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}
.team-name {
  font-size: 0.95rem;
  color: #b0b8d1;
  font-weight: 400;
}
.hero-section {
  background: #f7f2ef;
  max-width: 480px;
  margin: 10px auto 0 auto;
  border-radius: 18px;
  text-align: left;
}
.hero-section__headline {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 18px 0;
  color: #06031a;
}
.hero-section__gradient-text {
  display: inline-block;
  background: linear-gradient(90deg, #f7941d 0%, #ed1e79 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 42px;
  font-weight: 500;
}
.hero-section__desc {
  color: #181f36;
  font-size: 1.05rem;
  margin: 0 0 22px 0;
  line-height: 1.5;
}
.hero-section__why {
  margin-bottom: 18px;
}
.hero-section__why-title {
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 8px;
  color: #181f36;
}
.hero-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-section__list-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #181f36;
  margin-bottom: 10px;
  gap: 8px;
}
.hero-section__icon {
  color: #ff9900;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.hero-section__cta {
  display: inline-block;
  font-weight: 500;
  font-size: 1.08rem;
  border: none;
  border-radius: 8px;
  margin-top: 8px;
  cursor: pointer;
  background: linear-gradient(90deg, #f7941d 0%, #ed1e79 100%);
  color: #fff;
  padding: 10px 28px;
  border-radius: 24px;
  text-decoration: none;
  margin-left: 24px;
  transition: background 0.2s;
}
.case-study-card {
  max-width: 550px;
  border-radius: 18px;
  overflow: hidden;
  background: #18122b;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.13);
  position: relative;
  cursor: pointer;
}
.case-study-card__bg {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.case-study-card__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 1.6, 0.6, 1);
}
.case-study-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(24, 18, 43, 0.15) 0%,
    rgba(24, 18, 43, 0.7) 100%
  );
  z-index: 1;
}
.case-study-card__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
  pointer-events: none;
}
.case-study-card:hover .case-study-card__bg-img {
  transform: scale(1.08);
}
.case-study-card__content {
  background: #18122b;
  padding: 28px 24px 24px 24px;
  border-radius: 0 0 18px 18px;
  position: relative;
  z-index: 2;
}
.case-study-card__category {
  display: inline-block;
  font-size: 0.95rem;
  color: #fff;
  padding: 4px 8px;
  border-radius: 16px;
  padding: 8px 16px;
  margin-bottom: 14px;
  font-weight: 300;
  --angle: 0deg;
  border: 1.5px solid transparent;
  background: linear-gradient(#070533 0 0) padding-box,
    conic-gradient(
        from var(--angle),
        #f66b0e 0deg,
        #f66b0e60 20deg,
        #08054554 120deg,
        #080545 180deg,
        #f60e86 220deg,
        #f60e8634 240deg,
        #1a0c19 340deg,
        #f66b0e 360deg
      )
      border-box !important;
  animation: rotate-angle 8s linear infinite;
}
.case-study-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.case-study-card__desc {
  color: #e0e0e0;
  font-size: 1.01rem;
  margin-bottom: 22px;
  line-height: 1.5;
}
.case-study-card__cta {
  background: linear-gradient(90deg, #ff9900 0%, #ff7f32 60%, #e94f8b 100%);
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(233, 79, 139, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.case-study-card__cta:hover {
  box-shadow: 0 4px 16px rgba(233, 79, 139, 0.16);
  opacity: 0.95;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

.reasons-icon-bg {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  /* Add a subtle shadow if you want, or leave it plain */
}
.reasons-icon-bg img {
  width: 32px;
  height: 32px;
  display: block;
}
.reasons-card-text {
  color: #06031a;
  text-align: left;
}

.cta-bar {
  background: #b35a09;
  color: #fff;
  border-radius: 16px;
  margin: 40px 0px -70px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  position: relative;
  box-sizing: border-box;
  border-bottom: 2px solid #ed1e79;
  padding: 20px;
}

.cta-bar-text {
  flex: 1;
  font-size: 28px;
}

.cta-bar-btn {
  background: #fff;
  color: #23123a;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  margin-left: 24px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  box-shadow: none;
}

.cta-bar-btn:hover {
  background: #ed1e79;
  color: #fff;
}

@media (max-width: 700px) {
  .cta-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
    font-size: 1rem;
    border-radius: 10px;
  }
  .cta-bar-btn {
    margin: 16px 0 0 0;
    width: 100%;
    text-align: center;
  }
}

.testimonials-section {
  background: url("../assets/images/footer-bg.394ec0c1b423.png") center/cover no-repeat,
    #18122b;
  padding: 80px 20px 30px 20px;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 38px;
  letter-spacing: -1px;
}

.testimonials-highlight-orange {
  color: #ff7a2f;
  font-weight: 700;
}

.testimonials-highlight-pink {
  color: #ed1e79;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(24, 18, 43, 0.7);
  border-radius: 16px;
  padding: 32px 28px 28px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  /* Optional: subtle box-shadow for depth */
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.1);

  --angle: 0deg;
  border: 1.5px solid transparent;
  background: linear-gradient(#070533 0 0) padding-box,
    conic-gradient(
        from var(--angle),
        #f66b0e 0deg,
        #f66b0e60 20deg,
        #08054554 120deg,
        #080545 180deg,
        #f60e86 220deg,
        #f60e8634 240deg,
        #1a0c19 340deg,
        #f66b0e 360deg
      )
      border-box !important;
  animation: rotate-angle 8s linear infinite;
}

.testimonial-quote-icon {
  color: #ff9900;
  font-size: 2.2rem;
  margin-bottom: 18px;
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #fff;
}

.testimonial-author {
  font-size: 1.08rem;
  font-weight: 600;
  margin-top: auto;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.testimonial-company {
  font-weight: 500;
  font-size: 18px;
}
.gradient-text {
  background: linear-gradient(90deg, #f66b0e 0%, #f60e86 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 500;
}
@media (max-width: 1000px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .testimonials-title {
    font-size: 2rem;
    text-align: center;
  }
}

.superpower-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  margin: 0 auto;
  align-items: center;
  padding: 50px 20px;
}

.superpower-left {
  display: flex;
  justify-content: center;
}

.dashboard-header {
  margin-bottom: 18px;
}

.dashboard-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.dashboard-avatars {
  display: flex;
  align-items: center;
  gap: 0;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-right: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.dashboard-more-avatars {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #10162a;
  border: 2px solid #ff7f32;
  color: #ff7f32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 6px;
  margin-right: 0;
  position: relative;
  z-index: 1;
}

.dashboard-projects {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard-project-row {
  display: flex;
  align-items: center;
  background: #232a4a;
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  gap: 12px;
}

.dashboard-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}
.dashboard-dot-blue {
  background: #4a6cf7;
}
.dashboard-dot-orange {
  background: #ff7f32;
}
.dashboard-dot-grey {
  background: #b0b8d1;
}
.dashboard-dot-pink {
  background: #e94f8b;
}

.dashboard-project-name {
  flex: 1;
}

.dashboard-team {
  color: #b0b8d1;
  font-size: 0.98rem;
  font-weight: 400;
}

.superpower-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.superpower-title {
  color: #fff;
  font-size: 42px;
  margin-bottom: 18px;
  line-height: 1.18;
}

.gradient-text {
  background: linear-gradient(90deg, #f7941d 0%, #ed1e79 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.superpower-desc {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.5;
}

.superpower-btn {
  display: inline-block;
  font-weight: 500;
  font-size: 1.08rem;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  background: linear-gradient(90deg, #f7941d 0%, #ed1e79 100%);
  color: #fff;
  padding: 12px 32px;
  text-decoration: none;
  transition: background 0.2s;
}

.superpower-btn:hover {
  opacity: 0.92;
}

@media (max-width: 900px) {
  .superpower-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .superpower-left,
  .superpower-right {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .superpower-title {
    text-align: center;
  }
  .superpower-right {
    align-items: center;
  }
}

.dashboard-blur-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  min-width: 320px;
  min-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background: url("../assets/images/blur.dba25a6072d2.png") center/cover no-repeat;
  /* No border */
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
}

.dashboard-blur-card::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  background: rgba(24, 18, 43, 0.55);
  z-index: 1;
}

.dashboard-blur-bar {
  position: relative;
  z-index: 2;
  display: flex;
  height: 6px;
  width: 100%;
  margin-bottom: 18px;
  gap: 0;
  padding: 0 18px;
  margin-top: 12px;
}
.bar-segment {
  flex: 1;
  border-radius: 3px;
  height: 100%;
  margin-right: 4px;
}
.bar-blue {
  background: #4a6cf7;
}
.bar-orange {
  background: #ff7f32;
}
.bar-pink {
  background: #f60e86;
}
.bar-segment:last-child {
  margin-right: 0;
}

dashboard-blur-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 10px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.dashboard-blur-labels {
  margin-bottom: 10px;
}

.dashboard-blur-avatars {
  display: flex;
  align-items: center;
  gap: 0;
}

.dashboard-blur-avatars .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-right: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.dashboard-blur-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #18122b;
  border: 2px solid #ff7f32;
  color: #ff7f32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 6px;
  margin-right: 0;
  position: relative;
  z-index: 1;
}

.dashboard-blur-projects {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-blur-projects-header {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 13px;
  margin-bottom: 8px;
  opacity: 0.95;
}

.dashboard-blur-project-row {
  display: flex;
  align-items: center;
  background: #101636;
  border-radius: 8px;
  padding: 14px 18px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  gap: 12px;
  margin-bottom: 0;
}

.dashboard-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}
.dashboard-dot-blue {
  background: #4a6cf7;
}
.dashboard-dot-orange {
  background: #ff7f32;
}
.dashboard-dot-grey {
  background: #b0b8d1;
}
.dashboard-dot-pink {
  background: #e94f8b;
}

.dashboard-blur-project-name {
  font-size: 13px;
  flex: 1;
}

.dashboard-blur-team {
  color: #b0b8d1;
  font-size: 12px;
}

@media (max-width: 700px) {
  .dashboard-blur-card {
    max-width: 100%;
    min-width: 0;
    border-radius: 14px;
  }
  .dashboard-blur-content {
    padding: 0 10px 18px 10px;
  }
}
.cta-analytics-bar {
  margin-bottom: -140px;
  position: relative;
  z-index: 2;
  background: #b35a09;
  border-radius: 18px;
  padding: 15px 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-sizing: border-box;
  border-bottom: 4px solid #2d0c3a;
}

.cta-analytics-left {
  flex: 1.5;
  color: #fff;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-analytics-title {
  font-size: 28px;
  margin-bottom: 24px;
  line-height: 1.25;
}

.cta-analytics-actions {
  display: flex;
  gap: 18px;
}

.cta-analytics-btn {
  background: #fff;
  color: #23123a;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
}

.cta-analytics-btn.outline {
  background: #b35a09;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.analytics-widget {
  background: #23123a;
  border-radius: 14px;
  padding: 18px 22px 18px 22px;
  min-width: 210px;
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(54, 50, 74, 0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.analytics-widget-header {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.85;
}

.analytics-widget-info {
  font-size: 0.9em;
  opacity: 0.7;
}

.analytics-widget-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.analytics-widget-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 38px;
  margin-bottom: 10px;
  width: 100%;
}

.analytics-bar {
  width: 10px;
  border-radius: 4px 4px 0 0;
  background: #080545;
  position: relative;
}
.bar1 {
  height: 18px;
  background: #ff7f32;
}
.bar2 {
  height: 32px;
  background: #ff7f32;
}
.bar3 {
  height: 12px;
  background: #b0b8d1;
}
.bar4 {
  height: 28px;
  background: #ff7f32;
}
.bar5 {
  height: 22px;
  background: #b0b8d1;
}
.bar6 {
  height: 34px;
  background: #ff7f32;
}
.bar7 {
  height: 16px;
  background: #b0b8d1;
}
.bar8 {
  height: 26px;
  background: #ff7f32;
}

.analytics-widget-badge {
  background: #18122b;
  color: #fff;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.analytics-widget-coin {
  font-size: 1.2em;
  margin-left: 2px;
}

@media (max-width: 900px) {
  .cta-analytics-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 10px;
    gap: 24px;
  }

  .analytics-widget {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    align-items: center;
  }
}
.footer {
  background-color: #06031a;
  color: #fff;
  padding: 150px 20px 30px 20px;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.logo-icon {
  color: #ff7f32;
  font-weight: bold;
  font-size: 36px;
  margin-right: 12px;
}

.logo-text div:first-child {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

.logo-text div:last-child {
  font-size: 14px;
  letter-spacing: 1px;
  color: #ccc;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
  margin-top: 10px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

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

.footer-column ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #ccc;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-column ul li a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-flex {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-flex {
    grid-template-columns: 1fr;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-brand {
    text-align: center;
  }
}
.dashboard-section-bg {
  background: linear-gradient(120deg, #18122b 60%, #1a0c19 100%);
  padding: 48px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.give-clients-tools-dashboard-blur-card::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(16px);
  background: rgba(24, 18, 43, 0.55);
  z-index: 1;
  margin: 0px 30px 20px 30px;
}

.give-clients-tools-dashboard-blur-card .dashboard-blur-bar {
  position: relative;
  z-index: 2;
  display: flex;
  height: 6px;
  width: 100%;
  margin-bottom: 18px;
  margin-top: 5px;
  gap: 0;
}
.dashboard-blur-bar__segment {
  flex: 1;
  border-radius: 3px;
  height: 100%;
  margin-right: 4px;
}
.dashboard-blur-bar__segment--blue {
  background: #4a6cf7;
}
.dashboard-blur-bar__segment--orange {
  background: #ff7f32;
}
.dashboard-blur-bar__segment--lightgray {
  background: #b0b8d1;
}
.dashboard-blur-bar__segment--pink {
  background: #f60e86;
}
.dashboard-blur-bar__segment:last-child {
  margin-right: 0;
}

.dashboard-blur-labels {
  margin-bottom: 10px;
}

.dashboard-blur-title {
  color: #fff;
  font-size: 13px;
  margin-bottom: 10px;
}

.dashboard-blur-avatars {
  display: flex;
  align-items: center;
  gap: 0;
}

.dashboard-blur-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-right: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.dashboard-blur-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #18122b;
  border: 2px solid #ff7f32;
  color: #ff7f32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 6px;
  margin-right: 0;
  position: relative;
  z-index: 1;
}

.dashboard-blur-projects {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-blur-project-row {
  display: flex;
  align-items: center;
  background: #101636;
  border-radius: 8px;
  padding: 14px 18px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  gap: 12px;
  margin-bottom: 0;
}
.dashboard-blur-project-row--grey {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.dashboard-blur-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}
.dashboard-blur-dot--blue {
  background: #4a6cf7;
}
.dashboard-blur-dot--orange {
  background: #ff7f32;
}
.dashboard-blur-dot--grey {
  background: #b0b8d1;
}
.dashboard-blur-dot--pink {
  background: #e94f8b;
}

.dashboard-blur-project-name {
  flex: 1;
}

.dashboard-blur-team {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 400;
  text-align: right;
}

@media (max-width: 700px) {
  .give-clients-tools-dashboard-blur-card {
    max-width: 100%;
    min-width: 0;
    border-radius: 14px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 18px;
  }
}
.give-clients-tools-dashboard-blur-card {
  position: relative;
  width: 100%;
  max-width: 700px;
  min-width: 320px;
  min-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background: url("../assets/images/give-your-clients-bg.15f6bf3cf583.png") center/cover
    no-repeat;
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);

  padding: 0px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.give-clients-tools-dashboard-blur-card::before {
  content: "";
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  inset: 0;
  z-index: 1;
  backdrop-filter: blur(16px);
  background: rgba(24, 18, 43, 0.55);
}

.dashboard-blur-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  height: 6px;
  padding: 0 40px;
  gap: 0;
  margin-top: 4px;
}

.dashboard-blur-bar__segment {
  flex: 1;
  border-radius: 3px;
  height: 100%;
  margin-right: 4px;
}
.dashboard-blur-bar__segment:last-child {
  margin-right: 0;
}
.dashboard-blur-bar__segment--blue {
  background: #4a6cf7;
}
.dashboard-blur-bar__segment--orange {
  background: #ff7f32;
}
.dashboard-blur-bar__segment--pink {
  background: #f60e86;
}

.dashboard-blur-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.dashboard-blur-labels {
  margin-bottom: 10px;
}

.dashboard-blur-avatars {
  display: flex;
  align-items: center;
  gap: 0;
}

.dashboard-blur-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-right: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.dashboard-blur-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #18122b;
  border: 2px solid #ff7f32;
  color: #ff7f32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 6px;
  margin-right: 0;
  position: relative;
  z-index: 1;
}

.dashboard-blur-projects {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-blur-project-row {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 14px 18px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  gap: 12px;
  margin-bottom: 0;
}
.dashboard-blur-project-row--grey {
  background: rgba(255, 255, 255, 0.13);
}
.dashboard-blur-project-row--blue {
  background: #101636;
}

.dashboard-blur-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}
.dashboard-blur-dot--blue {
  background: #4a6cf7;
}
.dashboard-blur-dot--orange {
  background: #ff7f32;
}
.dashboard-blur-dot--grey {
  background: #b0b8d1;
}
.dashboard-blur-dot--pink {
  background: #e94f8b;
}

.dashboard-blur-project-name {
  flex: 1;
}

.dashboard-blur-team {
  color: #b0b8d1;
  font-size: 0.98rem;
  font-weight: 400;
}

@media (max-width: 700px) {
  .give-clients-tools-dashboard-blur-card {
    max-width: 100%;
    min-width: 0;
    border-radius: 14px;
  }
  .dashboard-blur-content {
    padding: 24px 10px 18px 10px;
  }
}

/* =================== CONTACT ============== */

.contact-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 40px;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
}

/* Show modal */
.contact-modal.active {
  display: flex;
}

/* Modal Content */
.contact-modal__content {
  border-radius: 20px;
  padding: 36px 32px 28px 32px;
  position: relative;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
  border: 1.5px solid transparent;
  border-image: linear-gradient(90deg, #f66b0e 0%, #f60e86 100%);
  --angle: 0deg;
  border: 1.5px solid transparent;
  background: linear-gradient(#18122b 0 0) padding-box,
    conic-gradient(
        from var(--angle),
        #f66b0e 0deg,
        #f66b0e60 20deg,
        #08054554 120deg,
        #080545 180deg,
        #f60e86 220deg,
        #f60e8634 240deg,
        #1a0c19 340deg,
        #f66b0e 360deg
      )
      border-box !important;
  animation: rotate-angle 8s linear infinite;
}

.contact-modal__close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}

.contact-modal__close:hover {
  color: #f66b0e;
}

.contact-modal__title {
  color: #fff;
  font-size: 42px;
  margin-bottom: 8px;
}

.contact-modal__subtitle {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 28px;
}

.contact-modal__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-modal__row {
  display: flex;
  gap: 18px;
  margin-bottom: 0;
}

.contact-modal__input,
.contact-modal__textarea {
  background: #3a3347;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  padding: 14px 16px;
  width: 100%;
  margin-bottom: 0;
  outline: none;
  transition: box-shadow 0.2s;
  resize: none;
}

.contact-modal__input:focus,
.contact-modal__textarea:focus {
  box-shadow: 0 0 0 2px #f66b0e;
}

.contact-modal__textarea {
  min-height: 90px;
}

.contact-modal__submit {
  margin-top: 10px;
  background: linear-gradient(90deg, #f7941d 0%, #ed1e79 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 38px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.contact-modal__submit:hover {
  opacity: 0.92;
}

@media (max-width: 600px) {
  .contact-modal__content {
    padding: 18px 8px 18px 8px;
  }
  .contact-modal__row {
    flex-direction: column;
    gap: 10px;
  }
  .navbar .hide-on-mobile {
    display: none;
  }
  .navbar {
    gap: 8px;
  }
}

.testimonials-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}
.testimonials-carousel .testimonial-card {
  display: none;
  min-width: 320px;
  max-width: 500px;
  width: 100%;
  transition: opacity 0.3s;
}
.testimonials-carousel .testimonial-card--active {
  display: flex;
}
.carousel-btn {
  background: linear-gradient(90deg, #f7941d 0%, #ed1e79 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  opacity: 0.85;
  z-index: 2;
}
.carousel-btn:focus {
  outline: 2px solid #ff7a2f;
  opacity: 1;
}
.carousel-btn:hover {
  opacity: 1;
  background: linear-gradient(90deg, #ff9a5a 0%, #ed1e79 100%);
}
@media (max-width: 700px) {
  .testimonials-carousel {
    flex-direction: column;
    gap: 12px;
  }
  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
  .testimonials-carousel .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}
