/* ===== Service Features Styles ===== */

.features-section {
  padding: 16px 24px 96px;
}

.features-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.features-heading h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 12px;
}

.features-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.features-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width:900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--purple-bg);
  border-radius: 24px;
  padding: 36px 32px;
}

.feature-card .f-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.feature-card .f-icon svg {
  width: 36px;
  height: 36px;
  color: var(--blue);
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.25;
  margin: 0 0 14px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #3d3f52;
  margin: 0;
}

/* ===== Feature showcase (bento) ===== */
.showcase-grid {
  max-width: 1240px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.showcase-row {
  display: grid;
  gap: 24px;
}

.showcase-row-split {
  grid-template-columns: 2fr 1fr 1fr;
}

@media(max-width:900px) {
  .showcase-row-split {
    grid-template-columns: 1fr;
  }
}

.showcase-card {
  border: 2px solid color-mix(in srgb, var(--blue) 22%, transparent);
  border-radius: 28px;
  background: linear-gradient(165deg, #fff 0%, var(--purple-bg) 130%);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.showcase-card h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.2;
  margin: 0 0 14px;
}

.showcase-card.wide h3 {
  font-size: 36px;
}

.showcase-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #3d3f52;
  margin: 0 0 28px;
  max-width: 520px;
}

.showcase-mock {
  margin-top: auto;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 18px;
}

.skeleton {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: color-mix(in srgb, var(--blue) 10%, transparent);
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg,
      transparent,
      color-mix(in srgb, var(--blue) 22%, transparent),
      transparent);
  animation: skeleton-shimmer 1.8s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.mock-a {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock-a-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.mock-a-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 12px;
}

.mock-a-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.mock-a-lines span {
  display: block;
  height: 10px;
}

.mock-a-lines span:nth-child(1) {
  width: 90%;
}

.mock-a-lines span:nth-child(2) {
  width: 65%;
}

.mock-a-lines span:nth-child(3) {
  width: 45%;
}

.mock-a-blocks {
  display: flex;
  gap: 12px;
}

.mock-a-blocks .skeleton {
  flex: 1;
  height: 100px;
  border-radius: 14px;
}

.mock-b {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-b-bar {
  height: 32px;
  margin-bottom: 8px;
}

.mock-b span {
  display: block;
  height: 10px;
}

.mock-b span:nth-child(2) {
  width: 100%;
}

.mock-b span:nth-child(3) {
  width: 82%;
}

.mock-b span:nth-child(4) {
  width: 64%;
}

.mock-b span:nth-child(5) {
  width: 46%;
}

.mock-c {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mock-c-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-c-row .dot {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: 3px;
}

.mock-c-row .bar {
  flex: 1;
  height: 9px;
}

.mock-c-row:nth-child(1) .bar {
  max-width: 92%;
}

.mock-c-row:nth-child(2) .bar {
  max-width: 70%;
}

.mock-c-row:nth-child(3) .bar {
  max-width: 80%;
}

.mock-c-row:nth-child(4) .bar {
  max-width: 58%;
}

.mock-c-row:nth-child(5) .bar {
  max-width: 66%;
}
