/* ════════════════════════════════
   FONTS
════════════════════════════════ */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-VariableFont_wdth,wght.ttf");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.ttf");
  font-weight: 100 900;
  font-style: normal;
}

/* ════════════════════════════════
   RESET
════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}



/* ════════════════════════════════
   HEADER
════════════════════════════════ */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(23, 23, 30, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
}

.header-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo img {
  height: 26px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

nav a::before {
  content: '•';
  font-size: 10px;
  color: rgba(71, 71, 76, 1);
}

nav a.active::before {
  color: rgba(255, 119, 217, 1);
}

.btn-login {
  background: #fff;
  color: #17171e;
  border: none;
  border-radius: 100px;
  padding: 6px 6px 6px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
}

.btn-login__icon {
  width: 36px;
  height: 36px;
  background: #dfee47;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-login__icon img {
  width: 20px;
  height: 20px;
}

.btn-login:hover { background: #f5f5f5; }

.btn-header-cta {
  background: #fff;
  color: #17171e;
  border: none;
  border-radius: 100px;
  padding: 6px 6px 6px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}
.btn-header-cta__icon {
  width: 36px;
  height: 36px;
  background: #dfee47;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-header-cta__icon img {
  width: 14px;
  height: 14px;
}
.btn-header-cta:hover { background: #f5f5f5; }

.btn-burger {
  display: none;
  width: 48px;
  height: 48px;
  background: #dfee47;
  border: none;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* mobile fullscreen menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 210px;
  background: #17171e;
  z-index: 1000;
  flex-direction: column;
  padding: 18px 24px 20px;
}
.mobile-menu.is-open { display: flex; }

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.btn-close {
  width: 48px;
  height: 48px;
  background: #dfee47;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.mobile-menu__nav a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.mobile-menu__nav a::before {
  content: '•';
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.mobile-menu__nav a.active { color: #fff; }
.mobile-menu__nav a.active::before { color: rgba(255, 119, 217, 1); }

.mobile-menu__bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.btn-login--dark { background: #fff; }

.btn-cta--yellow {
  background: #dfee47;
  color: #17171e;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  flex: 1;
  justify-content: center;
}

@media (max-width: 700px) {
  .btn-burger { display: flex; }
  header nav { display: none; }
  header .btn-login { display: none; }
  body.home .btn-burger { display: none; }
}

/* ════════════════════════════════
   SHARED: HERO SECTION
════════════════════════════════ */
.hero-section {
  background-color: rgba(23, 23, 30, 1);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #dfee47;
  color: #17171e;
  border: none;
  border-radius: 100px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s;
}
.btn-cta:hover { background: #cede2e; }
.btn-cta .arrow { font-size: 18px; }

/* decorative shapes */
.shapes-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
  display: flex;
  align-items: stretch;
}
.shapes-bg img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
  object-position: left center;
}
.shapes-bg--mobile {
  display: none;
  width: 100%;
  pointer-events: none;
}
.shapes-bg--mobile img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 700px) {
  .shapes-bg { display: none; }
  .shapes-bg--mobile { display: block; }
}

/* ════════════════════════════════
   SHARED: FOOTER
════════════════════════════════ */
footer {
  background: #FFFFFF;
  margin: 16px;
}
.footer__top {
  background-color: #DFEE47;
  display: flex;
  justify-content: space-between;
}
.footer__top-left {
  padding: 104px 0 104px 104px;
}
.footer__top-right {
  overflow: hidden;
  display: flex;
  align-items: center;
}
.footer__top-right img { object-fit: cover; height: 100%; }
.footer__top-title {
  font-family: 'Archivo', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #17171E;
  margin-bottom: 24px;
  max-width: 560px;
}
.footer__top-subtitle {
  font-size: 26px;
  line-height: 32px;
  font-weight: 400;
  color: #17171E;
  margin-bottom: 40px;
}
.footer__top-btn-link {
  width: 164px;
  text-decoration: none;
  display: block;
}
.footer-top__btn {
  border-radius: 1000px;
  background: #FFFFFF;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 15px 8px 15px 15px;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  line-height: 21px;
  font-family: "Inter", sans-serif;
}
.footer-top__btn div {
  width: 32px;
  height: 32px;
  background: #DFEE47;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-top__btn div > img { width: 12px; height: 12px; }
.footer__bottom {
  background-color: #FFFFFF;
  padding: 48px 100px;
}
.footer__bottom-container {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
.footer__bottom-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 300px;
  margin-right: 285px;
  align-self: stretch;
}
.footer__bottom-logo { display: inline-block; text-decoration: none; }
.footer__bottom-logo img { height: 32px; width: auto; display: block; }
.footer__bottom-copyright {
  font-size: 14px;
  font-weight: 400;
  color: #17171E;
  line-height: 21px;
}
.footer__bottom-right { flex: 1; min-width: 400px; }
.footer__bottom-compliance { display: flex; flex-direction: column; gap: 20px; }
.footer__bottom-compliance-title {
  font-size: 14px;
  font-weight: 500;
  color: #17171E;
  text-transform: uppercase;
}
.footer__bottom-links { display: flex; flex-wrap: wrap; gap: 80px; }
.footer__bottom-links-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 200px;
  flex: 1;
}
.footer__bottom-link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0,0,0,0.5);
  text-decoration: none;
  line-height: 20px;
  transition: color 0.2s ease;
}
.footer__bottom-link:hover { color: #17171E; }
.mob-copyright { display: none; }
.hiden { display: none; }

@media (max-width: 1240px) {
  .footer__bottom-left { margin-right: 60px; margin-bottom: 32px; }
}
@media (max-width: 768px) {
  .footer__top { flex-direction: column; }
  .footer__top-left { padding: 60px 40px; }
  .footer__top-title { font-size: 32px; }
  .footer__top-subtitle { font-size: 18px; }
  .footer__bottom { padding: 40px 24px; }
  .footer__bottom-container { flex-direction: column; }
  .footer__bottom-left { margin-right: 0; margin-bottom: 40px; }
  .footer__bottom-right { min-width: 100%; }
  .footer__bottom-links { gap: 40px; }
}
@media (max-width: 550px) {
  .footer__bottom { padding: 32px 20px 24px; }
  .footer__bottom-left { margin-bottom: 28px; }
  .footer__bottom-copyright { display: none; }
  .mob-copyright { display: block; margin-top: 48px; font-size: 14px; }
}
@media (max-width: 375px) {
  .footer__bottom-copyright, .footer__bottom-link { font-size: 12px; }
  .footer__bottom { padding: 24px 16px 20px; }
}

/* ════════════════════════════════
   FRONT PAGE: HERO
════════════════════════════════ */
.welcome-section {
  width: 100%;
  position: relative;
}

.welcome-header {
  text-align: center;
  padding: 100px 20px 350px;
  background: rgba(23, 23, 30, 1);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.welcome-title {
  color: #fff;
  font-size: 100px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-family: "Archivo", sans-serif;
  line-height: 90%;
  letter-spacing: -2%;
  max-width: 700px;
}

.welcome-subtitle {
  color: #fff;
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  font-family: "Inter";
}

.welcome-grid-wrapper {
  background: #fff;
  position: relative;
  width: 100%;
  z-index: 5;
  margin-top: 0;
}

.cubes-grid {
  display: grid;
  grid-template-columns: repeat(20, 240px);
  grid-template-rows: 120px repeat(2, 240px);
  gap: 0;
  justify-content: center;
  width: 100%;
  position: relative;
}

.cube-grid-item {
  width: 240px;
  height: 240px;
  border: 1px solid #F2F2F2;
  background: #fff;
  flex-shrink: 0;
}

.cube-grid-item.cube-half {
  height: 120px;
}

.welcome-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 0 20px;
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  top: 392px;
}

.welcome-cards > * {
  pointer-events: auto;
}

.welcome-card {
  padding: 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 584px;
  justify-content: space-between;
  height: 440px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.welcome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.welcome-card:hover .card-button {
  transform: scale(1.1);
}

.card-pink { background-color: #FF77D9; }
.card-blue { background-color: #4E56D3; }

.welcome-card h2 {
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 56px;
  font-weight: 600;
  z-index: 2;
}

.card-cubes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cube {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
}

.cube-small { width: 90px; height: 90px; }

.card-pink .cube:nth-child(1) { top: 20%; left: 60%; }
.card-pink .cube:nth-child(2) { top: 50%; left: 70%; }
.card-pink .cube:nth-child(3) { top: 70%; left: 50%; }
.card-blue .cube:nth-child(1) { top: 30%; left: 50%; }
.card-blue .cube:nth-child(2) { top: 60%; left: 60%; }
.card-blue .cube:nth-child(3) { top: 80%; left: 40%; }

.card-button {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #D4FF4D;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-button img { width: 40px; height: 40px; }

.welcome-footer-text {
  position: absolute;
  top: 258px;
  left: 50%;
  transform: translateX(-50%);
  width: 960px;
  height: 200px;
  background: white;
  border: 1px solid #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.welcome-footer-text p {
  font-size: 40px;
  color: #17171E;
  font-weight: 700;
  text-align: center;
  font-family: 'Archivo', sans-serif;
}

.welcome-footer-text .highlight {
  background: #DFEE47;
  padding: 8px 10px;
  position: relative;
  display: inline-block;
}

.welcome-footer-text::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #4E56D3;
  right: 223px;
  top: 47px;
  z-index: 1;
}

.welcome-footer-text .highlight::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #2BD46E;
  right: 0;
  top: 0;
  z-index: 101;
}

.welcome-footer-text .mobile-text { display: none; }

@media (max-width: 768px) {
  .welcome-header {
    padding: 54px 16px 56px 16px;
    height: 760px;
    justify-content: flex-start;
  }
  .welcome-title { font-size: 56px; margin-bottom: 24px; }
  .welcome-subtitle { font-size: 20px; }
  .welcome-cards {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    top: 290px;
    position: absolute;
    padding: 0 16px;
    pointer-events: none;
  }
  .welcome-card { width: 361px; height: 300px; padding: 32px; }
  .welcome-card h2 { font-size: 40px; }
  .card-button { width: 64px; height: 64px; }
  .card-button img { width: 29px; height: 29px; }
  .welcome-footer-text { width: 361px; height: 200px; top: 256px; margin-bottom: 127px; }
  .welcome-footer-text p { font-size: 32px; }
  .welcome-footer-text::after { right: 42px; top: 54px; }
  .welcome-footer-text .desktop-text { display: none; }
  .welcome-footer-text .mobile-text { display: block; width: 200px; }
  .welcome-footer-text .highlight { padding: 6px 24px 6px 8px; }
}

/* ════════════════════════════════
   IN-APP PAGE: HERO
════════════════════════════════ */
.hero {
  position: relative;
  padding: 150px 40px 80px;
  display: flex;
  flex-direction: column;
  max-width: 690px;
}
@media (max-width: 700px) {
  .hero { padding: 54px 10px 44px; }
}

.hero h1 {
  font-family: "Archivo", sans-serif;
  font-size: clamp(52px, 7vw, 94px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
}

.hero p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 40px;
}

/* trusted logos */
.trusted { padding: 0 40px 80px; }
.trusted-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.trusted-logos img {
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.swiper { height: 80px; }
@media (min-width: 701px) {
  .trusted-logos.swiper { overflow: visible; }
  .trusted-logos .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    transform: none !important;
    transition: none !important;
  }
  .trusted-logos .swiper-slide { width: auto !important; margin-right: 0 !important; }
}
@media (max-width: 700px) {
  .trusted { padding: 48px 16px 44px; }
  .trusted-logos .swiper-slide {
    width: auto !important;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ════════════════════════════════
   IN-APP PAGE: FEATURES
════════════════════════════════ */
.features-wrapper {
  width: 100%;
  background: #fff;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 5;
  overflow-x: hidden;
}

.features-cubes-grid {
  display: grid;
  grid-template-columns: repeat(20, 240px);
  grid-template-rows: 120px repeat(2, 240px);
  gap: 0;
  justify-content: center;
  width: 100%;
  position: relative;
}

.features-cube-item {
  width: 240px;
  height: 240px;
  border: 1px solid #F2F2F2;
  background: #fff;
  flex-shrink: 0;
}
.features-cube-item.cube-half { height: 120px; }

.features-row {
  display: flex;
  align-items: stretch;
  width: 100%;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  padding: 0 20px;
  pointer-events: none;
}
.features-row > * { pointer-events: auto; }

.left-icon-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 60px;
  flex-shrink: 0;
}
.right-icon-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 60px;
  flex-shrink: 0;
}

.features__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.features__icon img { width: 32px; height: 32px; display: block; }
.features__icon--pink { background: #FF77D9; }
.features__icon--yellow { background: #DFEE47; }

.cards-pair { display: flex; min-width: 0; }

.features__card {
  height: 480px;
  width: 480px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.features__title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #17171E;
  margin: 0 0 12px 0;
  max-width: 370px;
}
.features__text {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.4;
  color: #47474C;
}

/* ════════════════════════════════
   IN-APP PAGE: CASE STUDIES
════════════════════════════════ */
.case-studies {
  width: 100%;
  background: rgba(242, 242, 242, 1);
  display: flex;
  justify-content: center;
  padding: 120px 0;
}
.case-studies__inner {
  width: 100%;
  max-width: 1440px;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case-studies__label {
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
  text-transform: uppercase;
  color: #47474C;
}
.cards { display: flex; flex-wrap: wrap; gap: 24px; }
.card {
  flex: 1 1 calc(50% - 12px);
  min-width: 588px;
  padding: 40px 40px 0 40px;
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
  overflow: hidden;
  height: 443px;
}

.card__shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.card__shapes .shapes__item {
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
/* .card:hover .card__shapes .shapes__item { opacity: 1; } */

.card--first .shapes__item--pink   { background: #FF77D9; width: 27px;  height: 170px; right: 150px; top: 0; rotate: 90deg; }
.card--first .shapes__item--yellow { background: #DFEE47; width: 120px; height: 154px; right: 0;     top: 289px; }
.card--first .shapes__item--brown  { background: #AE9F80; width: 60px;  height: 155px; right: 0;     top: 443px; }
.card--second .shapes__item--green        { background: #2BD46E; width: 33px;  height: 155px; right: 122px; top: 176px; z-index: 1; }
.card--second .shapes__item--dark-green   { background: #565A27; width: 215px; height: 155px; right: -60px; top: 390px; }
.card--second .shapes__item--yellow-second{ background: #DFEE47; width: 87px;  height: 155px; right: 0;     top: 443px; }

.card__content { position: relative; z-index: 3; display: flex; flex-direction: column; }
.card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.card__title {
  font-family: 'Archivo', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  letter-spacing: -0.02em;
  color: #17171E;
  margin-bottom: 6px;
}
.card__text {
  font-size: 20px;
  color: #2C2D42;
  font-weight: 400;
  line-height: 24px;
  max-width: 240px;
}
.card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  bottom: 24px;
  left: 40px;
  right: 40px;
  z-index: 2;
}
.card__metrics-group { display: flex; flex-direction: column; }
.metric__label {
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
  text-transform: uppercase;
  color: #47474C;
  margin-bottom: 8px;
  white-space: nowrap;
}
.metric__value-wrapper { display: flex; align-items: baseline; gap: 6px; }
.metric__value {
  font-family: 'Archivo', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #47474C;
}
.metric__icon { width: 20px; height: auto; }

.card__image {
  position: relative;
  width: 325px;
  left: 32px;
  top: 24px;
  z-index: 2;
  align-self: flex-end;
}
.card__image img { width: 100%; display: block; }

.arrow-btn {
  width: 70px;
  height: 50px;
  border: 2px solid #17171E;
  border-radius: 40px;
  background: transparent;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 4;
  transition: all 0.2s ease;
}
.arrow-btn img { width: 16px; height: 16px; transition: filter 0.2s ease; }
/* .arrow-btn:hover, .card--first:hover .arrow-btn, .card--second:hover .arrow-btn {
  background: #17171E;
  border-color: #17171E;
}
.arrow-btn:hover img, .card--first:hover .arrow-btn img, .card--second:hover .arrow-btn img {
  filter: brightness(0) invert(1);
} */

/* ════════════════════════════════
   IN-APP PAGE: AD FORMATS SCROLL
════════════════════════════════ */
.adformats {
  background: rgba(44, 45, 66, 1);
  position: relative;
}
.adformats__header {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 72px 24px 40px;
}
.adformats__header h2 {
  font-family: "Archivo", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.adformats__header p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.adformats__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.adformats__body {
  height: 100%;
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  overflow: hidden;
}
.adformats__items-track {
  will-change: transform;
  width: 100%;
}
.adformats__item {
  padding: 0;
  height: 100vh;
  opacity: 0.18;
  transition: opacity 0.3s ease;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
}
.adformats__item-content { flex: 0 0 50%; }
.adformats__item-visual {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.adformats__item.is-active { opacity: 1; }
.adformats__item.is-past { opacity: 0.12; }
.adformats__num {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: block;
}
.adformats__item h3 {
  font-family: "Archivo", sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.15;
}
.adformats__item p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 420px;
}
.adformats__item-note { font-size: 13px !important; color: rgba(255,255,255,0.3) !important; margin-top: 10px; }
.adformats__sound-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  padding: 8px 18px;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s;
}
.adformats__sound-btn:hover { background: rgba(255,255,255,0.16); }
.adformats__phone { width: 100%; display: block; }
.adformats__deco {
  position: absolute;
  border-radius: 8px;
  z-index: 1;
}
.adformats__deco--pink  { width: 84px; height: 104px; background: #f048b0; top: 36px; right: -28px; }
.adformats__deco--yellow{ width: 76px; height: 84px;  background: #c8e63a; top: 36px; right: -108px; }
.adformats__deco--purple{ width: 112px; height: 76px; background: #7060f0; bottom: 72px; left: -36px; }
@media (max-width: 900px) {
  .adformats__header { padding: 48px 24px 40px; }
  .adformats__body { padding: 40px 0; }
  .adformats__item { flex-direction: column; gap: 20px; }
  .adformats__item-content { flex: 1; width: 100%; padding: 80px 20px; }
  .adformats__item-visual { flex: 1; width: 100%; order: -1; height: 260px; }
}

/* ════════════════════════════════
   IN-APP PAGE: ADSTACK DIAGRAM
════════════════════════════════ */
.adstack {
  padding: 80px 0 60px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.adstack__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.adstack__title {
  font-family: "Archivo", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #17171e;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.adstack__diagram {
  position: relative;
  width: 1100px;
  height: 600px;
  max-width: 100%;
}
.adstack__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.adstack__center {
  position: absolute;
  left: 470px;
  top: 220px;
  width: 160px;
  height: 160px;
  background: #fff;
  border: 12px solid rgba(44, 45, 66, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.adstack__center img { width: 60px; height: auto; }
.adstack__pill {
  position: absolute;
  height: 56px;
  background: #fff;
  border: 1.5px solid #e4e6f0;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  z-index: 5;
  white-space: nowrap;
}
.adstack__pill img { height: 28px; object-fit: contain; }
.adstack__pill--text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #17171e;
  gap: 8px;
}
#pill-unity    { left: 269px; top: 58px;  width: 200px; }
#pill-topon    { left: 631px; top: 58px;  width: 200px; }
#pill-applovin { left: 55px;  top: 182px; width: 230px; }
#pill-nimbus   { left: 785px; top: 182px; width: 200px; }
#pill-gam      { left: 40px;  top: 362px; width: 275px; }
#pill-admob    { left: 800px; top: 362px; width: 225px; }
.pill-icon--topon {
  display: inline-block;
  width: 20px; height: 20px;
  background: #222;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pill-icon--topon::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2.5px solid #fff;
}
.pill-icon--applovin {
  display: inline-block;
  width: 20px; height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='8' stroke='%23222' stroke-width='2'/%3E%3Cline x1='10' y1='4' x2='10' y2='16' stroke='%23222' stroke-width='2'/%3E%3Cline x1='4' y1='10' x2='16' y2='10' stroke='%23222' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
}
.pill-applovin-text { font-size: 15px; letter-spacing: 0.02em; }
.adstack__pill--nimbus {
  font-size: 20px;
  font-weight: 800;
  color: #1a6e5a;
  letter-spacing: 0.04em;
}
.adstack__diagram--mobile { display: none; }

@media (max-width: 700px) {
  .adstack__inner { padding: 0 !important; }
  .adstack__title { padding: 0 20px; }
  .adstack__diagram { display: none; }
  .adstack__diagram--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: hidden;
  }
  .adstack__diagram--mobile .adstack__svg-mobile {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .adstack__diagram--mobile .adm-stage {
    position: relative;
    width: 340px;
    height: 520px;
    flex-shrink: 0;
  }
  .adm-pill {
    position: absolute;
    height: 44px;
    background: #fff;
    border: 1.5px solid #e4e6f0;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    z-index: 2;
    white-space: nowrap;
    gap: 7px;
  }
  .adm-pill img { height: 22px; object-fit: contain; }
  .adm-pill--text { font-family: "Inter", sans-serif; font-size: 14px; font-weight: 600; color: #17171e; }
  .adm-pill--nimbus { font-size: 16px; font-weight: 800; color: #1a6e5a; letter-spacing: 0.04em; }
  .adm-gam     { left: 80px;  top: 20px;  width: 180px; }
  .adm-topon   { left: 0;     top: 148px; width: 125px; }
  .adm-unity   { left: 215px; top: 148px; width: 125px; }
  .adm-center {
    position: absolute;
    left: 110px; top: 200px;
    width: 120px; height: 120px;
    background: #fff;
    border: 9px solid rgba(44, 45, 66, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
  }
  .adm-center img { width: 52px; height: auto; }
  .adm-applovin { left: 0;     top: 354px; width: 140px; }
  .adm-nimbus   { left: 200px; top: 354px; width: 140px; }
  .adm-admob    { left: 65px;  top: 460px; width: 210px; }
  .adm-topon-icon {
    display: inline-block; width: 16px; height: 16px;
    background: #222; border-radius: 50%; position: relative; flex-shrink: 0;
  }
  .adm-topon-icon::after {
    content: ''; position: absolute; inset: 3px;
    border-radius: 50%; border: 2px solid #fff;
  }
  .adm-applovin-icon {
    display: inline-block; width: 16px; height: 16px; flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='8' stroke='%23222' stroke-width='2'/%3E%3Cline x1='10' y1='4' x2='10' y2='16' stroke='%23222' stroke-width='2'/%3E%3Cline x1='4' y1='10' x2='16' y2='10' stroke='%23222' stroke-width='2'/%3E%3C/svg%3E");
    background-size: contain;
  }
}
@media (max-width: 339px) {
  .adm-stage { transform: scale(0.92); transform-origin: top center; margin-bottom: -42px; }
}

/* ════════════════════════════════
   IN-APP PAGE: INTEGRATION
════════════════════════════════ */
.integration {
  text-align: center;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0 0 160px 0;
}
.integration h2 {
  font-size: 40px;
  margin-bottom: 24px;
  color: #000000;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
}
.integration p {
  color: #2C2D42;
  margin-bottom: 64px;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  font-family: 'Inter', sans-serif;
  max-width: 740px;
}
.fw-span { font-weight: 600; }
.steps { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.step {
  width: 540px;
  height: 80px;
  padding: 27px 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #D6D6D6;
  border-radius: 100px;
  background: #fff;
  color: #47474C;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}
.step-fill::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: #F3F4F6;
  z-index: 0;
}
.step span, .step img { position: relative; z-index: 2; }
.step img { width: 32px; height: 32px; filter: none; opacity: 1; }
.step-final { background: #DFEE47; color: #000; }
.line { width: 1px; height: 16px; background: #D6D6D6; opacity: 1; }
.integration-bottom-text {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 400;
  font-family: 'Archivo', sans-serif;
  margin-top: 80px;
  color: #47474C;
}

@media (max-width: 768px) {
  .hero h1 { font-size: clamp(38px, 10vw, 60px); }
  .features-cubes-grid { display: none; }
  .features-row { flex-direction: column; padding: 20px 16px; position: relative; gap: 24px; }
  .left-icon-wrap, .right-icon-wrap { width: 100%; flex-direction: row; height: 60px; }
  .left-icon-wrap  { justify-content: flex-start; }
  .right-icon-wrap { justify-content: flex-end; }
  .cards-pair { flex-direction: column; align-items: stretch; width: 100%; gap: 24px; }
  .features__card { width: 100%; height: auto; padding: 32px 24px; align-items: flex-start; text-align: left; }
  .features__title { font-size: 28px; max-width: 100%; }
  .features__text { font-size: 16px; }
  .case-studies__inner { padding: 0 20px; }
  .card { min-width: unset; width: 100%; height: auto; padding-bottom: 24px; }
  .card__bottom { position: static; margin-top: 24px; }
  .card__image { width: 200px; }
  .integration { padding: 120px 16px 80px; }
  .integration h2 { font-size: 32px; text-align: center; margin-bottom: 16px; }
  .integration p { font-size: 24px; margin-bottom: 64px; }
  .integration-bottom-text { font-size: 24px; margin-top: 88px; }
  .step { width: 100%; max-width: 540px; padding: 24px 40px; font-size: 22px; }
}
@media (max-width: 550px) {
  .features-row { padding: 16px 12px; gap: 20px; }
  .features__card { padding: 24px 20px; }
  .features__title { font-size: 24px; margin-bottom: 8px; }
  .features__text { font-size: 14px; line-height: 1.5; }
  .features__text br { display: none; }
  .case-studies { padding: 80px 0; }
  .case-studies__inner { padding: 0 16px; gap: 16px; }
  .case-studies__label { font-size: 12px; }
  .cards { flex-direction: column; gap: 16px; }
  .card { width: 100%; min-width: auto; height: auto; padding: 0; }
  .card__content { padding: 24px 20px 0; }
  .card__header { margin-bottom: 8px; }
  .card__title { font-size: 32px; line-height: 40px; }
  .card__text { font-size: 16px; line-height: 22px; max-width: 100%; }
  .arrow-btn { display: none; }
  .hiden { display: flex; position: absolute; bottom: 24px; left: 24px; }
  .card__bottom { position: relative; bottom: auto; left: auto; right: auto; display: flex; align-items: flex-start; }
  .card__metrics-group { margin-top: 16px; padding-left: 24px; }
  .metric__label { font-size: 12px; margin-bottom: 8px; }
  .metric__value { font-size: 40px; }
  .metric__icon { width: 20px; height: 20px; }
  .card__image { width: 300px; height: 300px; margin-left: auto; margin-right: -100px; top: auto; left: auto; }
  .card--second .card__image { margin-right: -78px; }
  .card__image img { width: 100%; height: 100%; object-fit: cover; }
  .card--first .shapes__item--pink  { right: 110px; top: 120px; }
  .card--first .shapes__item--yellow { top: 300px; }
  .card--first .shapes__item--brown  { top: 340px; }
  .card--second .shapes__item--green       { top: 200px; }
  .card--second .shapes__item--dark-green  { top: 320px; }
  .card--second .shapes__item--yellow-second { top: 360px; }
}
@media (max-width: 480px) {
  .card--second .shapes__item--green { top: 275px; }
  .card--second .shapes__item--dark-green { width: 155px; right: -65px; top: 400px; }
  .card--second .shapes__item--yellow-second { width: 52px; height: 95px; top: 408px; }
}
@media (max-width: 390px) {
  .features__card { padding: 20px 16px; }
  .features__title { font-size: 22px; }
  .features__text { font-size: 13px; }
  .card--second .card__image { margin-right: -120px; }
}

/* ════════════════════════════════
   AUDIO PAGE: HERO
════════════════════════════════ */
.hero-section--audio {
  min-height: 100vh;
}

/* ════════════════════════════════
   AUDIO PAGE: PROGRAMMATIC BLOCK
════════════════════════════════ */
.programmatic-audio-block {
  background-color: #F2F2F2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 120px;
}
.programmatic-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.programmatic-heading {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #17171E;
  margin-bottom: 80px;
  max-width: 967px;
}
.programmatic-features-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}
.programmatic-item { width: 384px; display: flex; align-items: center; gap: 20px; }
.programmatic-item-icon { width: 40px; height: 40px; flex-shrink: 0; object-fit: cover; }
.programmatic-item-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: #000000;
}

/* ════════════════════════════════
   AUDIO PAGE: SCALE SECTION
════════════════════════════════ */
.scale-section {
  padding: 110px 0 80px 0;
  position: relative;
  background-color: #FFFFFF;
}
.scale-title {
  font-family: 'Archivo', sans-serif;
  font-size: 52px;
  margin-bottom: 92px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 720px;
  width: 100%;
}
.scale-row {
  width: 100%;
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  display: flex;
  justify-content: center;
}
.scale-row + .scale-row { border-top: none; }
.scale-container {
  width: 960px;
  min-height: 561px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-left: 1px solid #E6E6E6;
  border-right: 1px solid #E6E6E6;
  position: relative;
  overflow: hidden;
}
.scale-left { display: flex; gap: 32px; padding: 0 40px; width: 480px; }
.scale-left h3 { font-family: 'Archivo', sans-serif; font-size: 30px; margin-bottom: 40px; font-weight: 700; min-width: 380px; }
.scale-left ul { list-style: none; font-family: 'Inter', sans-serif; }
.scale-left li {
  font-size: 20px;
  color: #47474C;
  margin-bottom: 12px;
  padding-left: 12px;
  position: relative;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.scale-left li:before {
  content: "";
  width: 4px; height: 4px;
  background: #4E56D3;
  position: absolute;
  left: 0; top: 12px;
}
.scale-row:last-child .scale-left li:before { background: #DFEE47; }
.scale-accent { width: 4px; height: 85px; flex-shrink: 0; }
.purple { background: #4E56D3; }
.yellow { background: #DFEE47; }
.scale-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #F2F2F2;
  height: 582px;
  width: 480px;
}
.sponsored {
  position: absolute;
  top: 34px; right: 42px;
  display: flex; align-items: center; justify-content: center;
  background-color: #DFEE47;
  padding: 12px 16px;
  gap: 8px;
  font-size: 20px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  z-index: 10;
  color: #35364D;
}
.user-avatar { width: 80px; height: 80px; margin-bottom: 16px; margin-left: 12px; margin-top: 12px; }
.user-header { display: flex; gap: 4px; margin-bottom: 16px; margin-left: 12px; flex-wrap: wrap; }
.user-tag {
  background: #F2F2F2;
  padding: 4px 6px;
  border-radius: 4px;
  display: flex; align-items: center; gap: 3px;
  font-size: 12px; font-weight: 500;
  color: #2C2D42;
  font-family: 'Inter', sans-serif;
}
.tag-icon { width: 16px; height: 16px; object-fit: contain; }
.interests-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: #B8B8B8; font-weight: 500;
  margin-bottom: 12px; text-transform: uppercase; margin-left: 12px;
}
.interests { display: flex; flex-direction: column; gap: 8px; }
.interest-item {
  background: #F2F2F2;
  padding: 12px 24px;
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  color: #2C2D42; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.interest-icon { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }
.protected-block { position: relative; width: 100%; height: 100%; }
.protected {
  color: #FFFFFF;
  background-color: #2BD46E;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px; text-transform: uppercase;
  line-height: 16px;
  display: flex; align-items: center; justify-content: center;
  width: 106px; gap: 4px;
  font-family: 'Inter', sans-serif;
  margin: 16px 78px 34px 78px;
}
.protected img { width: 14px; height: 14px; }
.voice-icon { width: 205px; height: 54px; margin: 0 26px 53px 32px; }
.decore-pink-cube {
  position: absolute;
  bottom: 76px; right: 103px;
  width: 26px; height: 54px;
  background-color: #FF77D9;
  z-index: 10;
}
.blue-shield {
  position: absolute;
  right: 43px; bottom: 143px;
  width: 130px; height: 130px;
  background-color: #4E56D3;
  z-index: 9;
  display: flex; align-items: center; justify-content: center;
}
.blue-shield img { width: 64px; height: 64px; }
.decor-square { position: absolute; width: 56px; height: 56px; z-index: 10; }
.square-top { background: #7980ED; top: 0; left: 55%; transform: translateX(-50%); }
.square-bottom { background: #DFEE47; right: 0; top: 0; }

/* ════════════════════════════════
   AUDIO PAGE: EXPAND SECTION
════════════════════════════════ */
.expand-section {
  background-color: #2C2D42;
  padding: 200px 120px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  position: relative; z-index: 10;
}
.expand-content {
  width: 100%; max-width: 1440px;
  display: flex; flex-direction: column; align-items: center;
}
.expand-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 52px;
  line-height: 100%; letter-spacing: -0.02em;
  text-align: center; color: #ffffff;
  margin-bottom: 90px; max-width: 967px;
}
.highlight-box {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  vertical-align: middle;
  width: 188px; height: 53px; margin-right: 8px;
}
.highlight-bg { position: absolute; inset: 0; background-color: #4E56D3; z-index: 0; }
.deco-square {
  position: absolute;
  width: 28px; height: 29px;
  background-color: #FF77D9;
  top: -29px; right: -42px;
  transform: translateX(-50%);
  z-index: 1;
}
.highlight-text { position: relative; z-index: 2; white-space: nowrap; font-size: inherit; line-height: 1; }
.features-list {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 40px; list-style: none;
}
.feature-item { display: flex; align-items: center; gap: 20px; color: #F2F2F2; }
.feature-icon { width: 32px; height: 32px; flex-shrink: 0; object-fit: contain; filter: brightness(0) invert(1); }
.feature-text {
  font-weight: 400; font-size: 24px;
  line-height: 28px; letter-spacing: -0.01em;
  text-align: center; white-space: nowrap;
}

@media (max-width: 1100px) {
  .scale-container { width: 90%; max-width: 960px; margin: 0 auto; box-sizing: border-box; }
  .scale-left, .scale-right { width: 100%; box-sizing: border-box; }
  .scale-left { padding: 100px 30px 25px 30px; }
  .scale-left h3 { min-width: auto; }
  .scale-right { height: auto; min-height: 340px; }
  .blue-shield { width: 100px; height: 100px; right: 20px; bottom: 60px; }
  .blue-shield img { width: 50px; height: 50px; }
  .decore-pink-cube { width: 20px; height: 40px; right: 60px; bottom: 30px; }
  .voice-icon { width: 160px; height: auto; margin: 0 20px 40px 20px; }
  .protected { margin: 16px 40px 34px 40px; }
  .square-bottom { width: 40px; height: 40px; }
}
@media (max-width: 834px) {
  .programmatic-audio-block { padding: 80px 40px; }
  .programmatic-heading { font-size: 40px; margin-bottom: 60px; }
  .programmatic-item { width: 100%; max-width: 384px; justify-content: center; }
}
@media (max-width: 768px) {
  .expand-section { padding: 100px 20px; }
  .features-list { flex-direction: column; gap: 24px; }
  .feature-item { width: 100%; justify-content: center; }
  .scale-title { font-size: 36px; }
  .scale-container { grid-template-columns: 1fr; padding: 40px; min-height: auto; width: 100%; }
  .scale-left h3 { font-size: 26px; }
  .scale-left li { font-size: 18px; }
  .scale-right { width: 100%; }
}
@media (max-width: 480px) {
  .programmatic-audio-block { padding: 60px 20px; }
  .programmatic-heading { font-size: 32px; margin-bottom: 48px; }
  .programmatic-item-text { font-size: 18px; }
  .programmatic-item-icon { width: 36px; height: 36px; }
  .voice-icon { margin: 0 20px 75px 20px; }
  .blue-shield { bottom: 42px; }
}
