/* ------------------ HERO SECTION ----------------- */
.hero {
  padding-block: clamp(2rem, 2vw, 8rem);
  padding-inline: clamp(1.5rem, 6vw, 10rem);
  background: #ffffff;

  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  /* gap: clamp(1rem, 1vw, 3rem); */

  max-width: 90rem;
  margin-inline: auto;
  position: relative;
}

/* TRUST TEXT */
.hero-trust {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #6b7280;
}

/* TITLE */
.hero-title {
  /* font-family: "Montserrat", sans-serif;  */
  font-weight: 400;
  line-height: 1.2;
  font-size: clamp(2rem, 5vw, 3.125rem);
  color: #111827;
}

/* BADGES */
.hero-badges {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;

  /* min-height: clamp(6rem, 18vw, 10rem); */
  pointer-events: none;
}

.badge {
  position: absolute;

  font-family: "Poppins", sans-serif;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 400;

  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(0.9rem, 2vw, 1.3rem);
  border-radius: clamp(0.25rem, 0.6vw, 0.45rem);

  background: #ffffff;
  border: 0.0625rem solid;

  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 0.8vw, 0.6rem);

  white-space: nowrap;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.08);

  transform: rotate(-6deg);
  z-index: 2;
}

.badge .dot {
  width: clamp(0.45rem, 0.7vw, 0.55rem);
  height: clamp(0.45rem, 0.7vw, 0.55rem);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Badge colors */
.badge.web {
  border-color: #38bdf8;
  /* top: -3rem;
  right: 10%; */

  right: 10%;
  transform: rotate(5deg);
}

.badge.web .dot {
  background: #38bdf8;
}

.badge.marketing {
  border-color: #22c55e;
  left: 12%;
  top: 2rem;
}

.badge.marketing .dot {
  background: #22c55e;
}

.badge.app {
  border-color: #fb923c;
  /* right: 12%;
  top: 3rem; */

  right: 12%;
  top: 5rem;
}

.badge.app .dot {
  background: #fb923c;
}

/* ILLUSTRATION */
.hero-illustration {
  margin-top: clamp(2rem, 6vw, 4rem);
  display: flex;
  justify-content: center;

  position: relative;
  z-index: 1;
}

.hero-illustration img {
  width: clamp(18rem, 45vw, 32rem);
  height: auto;
}

@media (min-width: 90rem) {
  .hero-title {
    max-width: 70%;
  }
}

@media (max-width: 48rem) {
  .hero-badges {
    position: static;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    pointer-events: auto;
  }

  .badge {
    position: static;
    transform: none;
  }

  .badge.web {
    transform: none;
  }
}

/* Hero Graphics */
/* .hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: clamp(18rem, 35vw, 28rem);
  height: clamp(18rem, 35vw, 28rem);
  border-radius: 50%;
  filter: blur(6rem);
  opacity: 0.15;
  z-index: 0;
}

.hero::before {
  background: #38bdf8;
  top: 10%;
  left: -10%;
}

.hero::after {
  background: #22c55e;
  bottom: 5%;
  right: -10%;
} */

/* ---------------- SERVICES SECTION ---------------- */
.services {
  padding-block: clamp(2rem, 2vw, 8rem);

  padding-inline: clamp(1.5rem, 6vw, 10rem);
  background: #ffffff;
}

.services-container {
  max-width: 90rem;
  margin-inline: auto;
  text-align: center;
}

/* Pill */
.services-pill {
  display: inline-block;
  padding: clamp(0.35rem, 0.8vw, 0.5rem) clamp(0.9rem, 2vw, 1.2rem);

  border-radius: 999rem;
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  background: #07a3c31a;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

/* Headings */
.services-title {
  font-size: clamp(1.8rem, 4vw, 2.0625rem);
  font-weight: 400;
  color: #111827;
}

.services-subtitle {
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
  font-size: clamp(0.875rem, 1.4vw, 0.8rem);
  color: #6b7280;
  max-width: 42rem;
  margin-inline: auto;
  font-weight: 400;
}

/* Grid */
.services-grid {
  display: flex;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(1rem, 6vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}

/* Card */
.service-card {
  background: #ffffff;
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);

  max-width: 22rem;
  text-align: left;

  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 2rem 3.5rem rgba(0, 0, 0, 0.1);
}

/* Icon */
.service-icon {
  width: clamp(3rem, 6vw, 3.75rem);
  height: clamp(3rem, 6vw, 3.75rem);
  border-radius: clamp(0.6rem, 1vw, 0.9rem);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
  border-radius: clamp(0.6rem, 1vw, 0.9rem);
}

.service-icon img {
  width: clamp(1.9rem, 3vw, 2rem);
  height: clamp(1.9rem, 3vw, 2rem);
  object-fit: contain;
  opacity: 1;
}

/* Icon gradients */
.service-icon.blue {
  background: linear-gradient(135deg, #0c65aa 0%, #0cafeb 100%);
  box-shadow: 0 0.75rem 1.5rem rgba(12, 101, 170, 0.35);
}

.service-icon.green {
  background: linear-gradient(135deg, #77feb4 0%, #5dd8fd 100%);
  box-shadow: 0 0.75rem 1.5rem rgba(93, 216, 253, 0.35);
}

.service-icon.orange {
  background: linear-gradient(135deg, #e8813a 0%, #a23cb9 100%);
  box-shadow: 0 0.75rem 1.5rem rgba(162, 60, 185, 0.35);
}

/* Text */
.service-card h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  margin-bottom: 0.5rem;
  color: #000000;
  font-weight: 400;
}

.service-card p {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: #6b7280;
  line-height: 1.3;
  font-weight: 300;
}

/* Tags */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.4rem, 1vw, 0.6rem);
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
}

.service-tags span {
  font-family: "Poppins", sans-serif;

  padding: clamp(0.3rem, 0.8vw, 0.45rem) clamp(0.6rem, 1.2vw, 0.75rem);

  background: #f3f4f6;
  border-radius: 999rem;
  font-size: clamp(0.7rem, 1vw, 0.75rem);
  color: #374151;
  font-weight: 300;
}

/* Link */
.service-link {
  display: inline-block;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: #0ea5e9;
  font-weight: 500;
  text-decoration: none;
}

/* ---------------- STATS SECTION ---------------- */

.stats {
  padding-block: clamp(2.5rem, 5vw, 4rem);

  padding-inline: clamp(1.5rem, 6vw, 10rem);
  background: #ffffff;
}

.stats-container {
  max-width: 90rem;
  margin-inline: auto;
  text-align: center;
}

/* Title */
.stats-title {
  font-size: clamp(1.8rem, 4vw, 2.0625rem);
  font-weight: 400;
  color: #111827;
}

/* Subtitle */
.stats-subtitle {
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
  font-size: clamp(0.875rem, 1.4vw, 0.8rem);
  color: #6b7280;
  max-width: 42rem;
  margin-inline: auto;
  font-weight: 400;
}

/* Grid */
.stats-grid {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(3rem, 6vw, 4rem);
  justify-content: center;
  flex-wrap: wrap;
}

/* Card */
.stat-card {
  flex: 1 1 clamp(14rem, 20vw, 18rem);
  max-width: 18rem;

  border: 1px solid #117ed380;
  box-shadow: 0px 0px 25px 0px #00000005;
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);

  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 1.25rem 2.5rem rgba(14, 165, 233, 0.15);
}

/* Numbers */
.stat-card h3 {
  font-family: "Poppins", sans-serif;

  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 2px #0b9aaf;
  line-height: 1;
  line-height: 1;
}

/* Label */
.stat-card p {
  font-family: "Poppins", sans-serif;

  margin-top: clamp(0.75rem, 2vw, 1rem);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: #0b9aaf;
}

/* --------------- WHY CHOOSE US ---------------- */
.why-us {
  padding-block: clamp(2rem, 2vw, 8rem);
  padding-inline: clamp(1.5rem, 6vw, 10rem);
  background: #fff;
}

.container {
  max-width: 90rem;
  margin-inline: auto;
  text-align: center;
}

/* PILL */
.pill {
  display: inline-block;
  padding: clamp(0.35rem, 0.8vw, 0.5rem) clamp(0.9rem, 2vw, 1.2rem);
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  border-radius: 999rem;
  background: #07a3c31a;
  color: #000000;
  margin-bottom: 1rem;
}

/* TITLES */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.0625rem);
  font-weight: 400;
  color: #111827;
}

.section-subtitle {
  max-width: 640px;
  margin: 0.8rem auto 3rem;
  color: #6b7280;
  font-size: 0.95rem;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  /* grid-template-columns: repeat(3, minmax(25rem, 27rem)); */
  gap: 1.8rem;
}

/* CARD */
.why-card {
  flex: 1 1 clamp(16rem, 30vw, 22rem);
  background: #ffffff;
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.08);
}

/* ICON */
.icon {
  width: clamp(3rem, 5vw, 3.5rem);
  height: clamp(3rem, 5vw, 3.5rem);
  border-radius: clamp(0.6rem, 1.2vw, 0.9rem);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  opacity: 1;
}

/* ICON COLORS */
.icon.blue {
  background: #dfeef6;
  color: #0f4c8a;
}
.icon.orange {
  background: #fceedf;
  color: #f38c25;
}
.icon.green {
  background: #e5f6ec;
  color: #20b65f;
}
.icon.purple {
  background: #eddbf6;
  color: #9933cc;
}
.icon.cyan {
  background: #d6f2fb;
  color: #13b6ec;
}
.icon.teal {
  background: #e1f6f4;
  color: #20b65f;
}

.why-card:hover .icon img {
  transform: scale(1.08);
  transition: transform 0.25s ease;
}

/* TEXT */
.why-card h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  margin-bottom: 0.5rem;
  color: #000000;
  font-weight: 400;
}

.why-card p {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: #6b7280;
  line-height: 1.3;
  font-weight: 300;
}

/* ----------------------- OUR CLIENTS ----------------------- */

.clients {
  padding-block: clamp(2rem, 2vw, 8rem);
  padding-inline: clamp(1.5rem, 6vw, 10rem);
  background: #fff;
  padding-bottom: 4rem;
}

.clients-container {
  max-width: 90rem;
  margin-inline: auto;
  text-align: center;
}

/* Title */
.clients-title {
  font-size: clamp(1.8rem, 4vw, 2.0625rem);
  font-weight: 400;
  color: #111827;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Logos row */
.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.clients-logos img {
  max-width: clamp(6rem, 12vw, 9rem);
  height: auto;
  opacity: 0.9;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.fade-left {
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 30%,
    black 60%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 30%,
    black 60%
  );
  filter: blur(0.05rem);
}

.fade-right {
  mask-image: linear-gradient(
    to left,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 30%,
    black 60%
  );
  -webkit-mask-image: linear-gradient(
    to left,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 30%,
    black 60%
  );
  filter: blur(0.05rem);
}

.fade-left:hover,
.fade-right:hover {
  filter: blur(0);
  opacity: 1;
}

@media (min-width: 90rem) {
  .fade-left,
  .fade-right {
    filter: blur(0.08rem);
  }
}

.clients-logos img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* CTA */
.clients-cta {
  max-width: 48rem;
  margin-inline: auto;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.0625rem);
  font-weight: 400;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.cta-text {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

/* Button */
.cta-btn {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  padding: clamp(0.65rem, 1.5vw, 0.85rem) clamp(1.5rem, 3vw, 2.2rem);
  border-radius: clamp(0.4rem, 1vw, 0.6rem);
  background: linear-gradient(96.12deg, #13b7a6 0%, #0892b2 100%);
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.8rem 1.6rem rgba(19, 183, 166, 0.35);
}
