#section-3p5.home-section {
  position: relative;
  width: 100%;
  padding: clamp(88px, 7vw, 148px) 0;
  background: linear-gradient(180deg, #0A0E1F 0%, #0B1428 100%);
  color: #F1F5F9;
  overflow: hidden;
}

.section-3p5__inner {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 0 clamp(40px, 5vw, 120px);
}

.section-3p5__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(56px, 5vw, 92px);
}

.section-3p5__title {
  margin: 0 0 clamp(16px, 1.4vw, 24px);
  font-size: clamp(28px, 3.4vw, 56px);
  font-weight: 600;
  line-height: 1.2;
  color: #F1F5F9;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-3p5__subtitle {
  margin: 0;
  font-size: clamp(14px, 1.1vw, 19px);
  font-weight: 500;
  color: rgba(241,245,249,.7);
  line-height: 1.5;
  letter-spacing: 0;
}

.section-3p5__showcase {
  display: grid;
  grid-template-columns: clamp(360px, 28vw, 560px) minmax(480px, 1fr);
  gap: clamp(64px, 6vw, 144px);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
}

.section-3p5__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 2vw, 44px);
}

.section-3p5__phone-frame {
  position: relative;
  width: clamp(340px, 20vw, 480px);
  aspect-ratio: 183 / 358;
  background-image: url("../images/download/phone-mockup.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,.35));
  transform: translate3d(0, 0, 0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.section-3p5__phone-screen {
  position: absolute;
  top: 4%;
  right: 5%;
  bottom: 4%;
  left: 5%;
  border-radius: clamp(14px, 1.8vw, 26px);
  overflow: hidden;
  background: #000;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.section-3p5__phone-track {
  display: flex;
  width: 300%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform .6s var(--ease);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.section-3p5__phone-shot {
  width: calc(100% / 3);
  height: 100%;
  flex-shrink: 0;
}

.section-3p5__phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  -webkit-user-select: none;
  user-select: none;
}

.section-3p5__dots {
  display: flex;
  justify-content: center;
  gap: clamp(10px, .8vw, 16px);
}

.section-3p5__dot {
  width: clamp(26px, 1.4vw, 40px);
  height: clamp(8px, .45vw, 12px);
  border-radius: 999px;
  border: 0;
  background: rgba(241,245,249,.25);
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color .35s var(--ease),
    transform .35s var(--ease);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.section-3p5__dot.is-active {
  background: var(--accent);
  transform: translate3d(0, 0, 0) scaleX(1.18);
}

@media (hover: hover) {
  .section-3p5__dot:hover {
    background: rgba(56,189,248,.6);
  }
}

.section-3p5__captions {
  position: relative;
  max-width: 720px;
}

.section-3p5__proof-strip {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(6px, .5vw, 10px);
  width: min(100%, 560px);
  margin-bottom: clamp(30px, 2.6vw, 48px);
}

.section-3p5__proof-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(42px, 2.8vw, 54px);
  padding: 0 clamp(14px, 1.2vw, 22px);
  border: 1px solid rgba(241,245,249,.14);
  border-radius: clamp(10px, .8vw, 14px);
  background: rgba(241,245,249,.04);
  color: rgba(241,245,249,.86);
  font-size: clamp(13px, .9vw, 16px);
  font-weight: 500;
  letter-spacing: 0;
  transition:
    color .35s var(--ease),
    background-color .35s var(--ease),
    border-color .35s var(--ease),
    transform .35s var(--ease);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

@media (hover: hover) {
  .section-3p5__proof-pill:hover {
    color: #F1F5F9;
    border-color: rgba(56,189,248,.4);
    background: rgba(241,245,249,.08);
    transform: translate3d(0, -2px, 0);
  }
}

.section-3p5__caption-stage {
  position: relative;
  min-height: clamp(390px, 28vw, 520px);
}

.section-3p5__caption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity .55s var(--ease),
    transform .55s var(--ease);
  pointer-events: none;
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.section-3p5__caption.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.section-3p5__caption-title {
  margin: 0 0 clamp(16px, 1.4vw, 24px);
  font-size: clamp(24px, 2.8vw, 44px);
  font-weight: 600;
  line-height: 1.25;
  color: #F1F5F9;
  letter-spacing: 0;
}

.section-3p5__caption-desc {
  margin: 0 0 clamp(20px, 2vw, 32px);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.7;
  color: rgba(241,245,249,.75);
}

.section-3p5__caption-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(10px, .9vw, 16px);
}

.section-3p5__caption-points li {
  position: relative;
  padding-left: 0;
  font-size: clamp(13px, .95vw, 17px);
  color: rgba(241,245,249,.82);
  line-height: 1.5;
}

.section-3p5__result-grid {
  display: grid;
  margin-top: clamp(26px, 2.2vw, 40px);
  border-top: 1px solid rgba(241,245,249,.14);
}

.section-3p5__result-row {
  display: grid;
  grid-template-columns: clamp(92px, 7vw, 132px) 1fr;
  gap: clamp(20px, 2vw, 36px);
  align-items: center;
  padding: clamp(15px, 1.2vw, 22px) 0;
  border-bottom: 1px solid rgba(241,245,249,.1);
}

.section-3p5__result-row span {
  color: rgba(241,245,249,.52);
  font-size: clamp(12px, .82vw, 15px);
  font-weight: 500;
}

.section-3p5__result-row strong {
  color: rgba(241,245,249,.92);
  font-size: clamp(15px, 1.05vw, 19px);
  font-weight: 600;
  line-height: 1.45;
}

@media (max-width: 1023px) {
  #section-3p5.home-section {
    padding: clamp(72px, 14vw, 120px) 0;
  }

  .section-3p5__inner {
    padding: 0 clamp(20px, 5vw, 40px);
  }

  .section-3p5__showcase {
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 56px);
    max-width: none;
  }

  .section-3p5__phone-frame {
    width: clamp(200px, 50vw, 280px);
  }

  .section-3p5__dot {
    width: clamp(22px, 5vw, 32px);
    height: clamp(8px, 2vw, 10px);
  }

  .section-3p5__captions {
    min-height: auto;
    position: relative;
    max-width: none;
  }

  .section-3p5__proof-strip {
    display: none;
  }

  .section-3p5__caption-stage {
    min-height: auto;
  }

  .section-3p5__caption {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: none;
  }

  .section-3p5__caption.is-active {
    display: block;
  }

  .section-3p5__result-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 767px) {
  .section-3p5__head {
    text-align: left;
    margin-bottom: clamp(36px, 10vw, 56px);
  }

  .section-3p5__phone-frame {
    width: clamp(196px, 68vw, 264px);
  }

}

@media (prefers-reduced-motion: reduce) {
  .section-3p5__phone-track,
  .section-3p5__dot,
  .section-3p5__caption {
    transition: none !important;
  }
}
