/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 01 2026 | 23:32:55 */
:root {
  --apps-primary: #0a2250;
  --apps-primary-soft: #2f73ef;
  --apps-accent: #ef3b5f;
  --apps-bg: #ecf3ff;
  --apps-surface: #ffffff;
  --apps-border: rgba(18, 53, 122, 0.14);
  --apps-text: #0f1a31;
  --apps-muted: #5f6c8a;
  --apps-ok: #14a062;
  --apps-bad: #e55a5f;
  --apps-shadow: 0 16px 34px rgba(8, 26, 61, 0.12);
  --apps-radius-lg: 22px;
  --apps-radius-md: 16px;
  --apps-radius-sm: 12px;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

.apps-page {
  min-height: 100%;
}

.apps-page * {
  box-sizing: border-box;
}

.apps-page {
  font-family: "Barlow", "Segoe UI", sans-serif;
  color: var(--apps-text);
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 115, 239, 0.18), transparent 38%),
    radial-gradient(circle at 89% 0%, rgba(239, 59, 95, 0.16), transparent 34%),
    linear-gradient(180deg, #f7faff 0%, #ecf3ff 48%, #f7f9ff 100%);
  line-height: 1.6;
}

.apps-page a {
  color: inherit;
  text-decoration: none;
}

.apps-page ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.apps-page img {
  max-width: 100%;
  display: block;
}

.apps-page .apps-container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.apps-page .apps-section {
  padding: clamp(38px, 5.8vw, 72px) 0;
}

.apps-page .apps-section:not(.app-hero) .apps-container {
  padding: clamp(16px, 2.1vw, 24px);
  border-radius: var(--apps-radius-lg);
  border: 1px solid var(--apps-border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 255, 0.9));
  box-shadow: var(--apps-shadow);
}

.apps-page .btn {
  border: 0;
  border-radius: 12px;
  min-height: 44px;
  padding: 0.62rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.apps-page .btn:hover {
  transform: translateY(-1px);
}

.apps-page .btn-back {
  background: #ebf1ff;
  color: #223f9b;
  border: 1px solid rgba(34, 63, 155, 0.2);
}

.apps-page .btn-primary {
  background: linear-gradient(120deg, #d61f3f 0%, #ef3b5f 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(214, 31, 63, 0.3);
}

.apps-page .btn-secondary {
  background: linear-gradient(120deg, #1a4ea9 0%, #2f73ef 100%);
  color: #fff;
  border: 1px solid rgba(26, 78, 169, 0.35);
  box-shadow: 0 12px 24px rgba(26, 78, 169, 0.25);
}

.apps-page .btn-outline {
  background: #fff;
  color: #1a3fba;
  border: 1px solid rgba(26, 63, 186, 0.26);
}

.apps-page .app-page-main {
  min-height: 100vh;
  overflow-x: clip;
}

.apps-page .app-hero {
  padding-top: clamp(24px, 3.8vw, 50px);
}

.apps-page .app-hero .apps-container {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(14, 43, 116, 0.24);
  padding: clamp(14px, 2vw, 24px);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.28), transparent 38%),
    radial-gradient(circle at 92% 88%, rgba(245, 106, 140, 0.26), transparent 36%),
    linear-gradient(140deg, #08245e 0%, #184396 48%, #dd2f61 100%);
  box-shadow: 0 24px 44px rgba(7, 22, 58, 0.3);
}

.apps-page .app-hero .apps-container::before,
.apps-page .app-hero .apps-container::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.apps-page .app-hero .apps-container::before {
  inset: 0;
  background: repeating-linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.08) 0 2px,
    transparent 2px 24px
  );
  opacity: 0.2;
}

.apps-page .app-hero .apps-container::after {
  width: 420px;
  height: 420px;
  right: -210px;
  top: -230px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 72%);
}

.apps-page .app-hero .apps-container > * {
  position: relative;
  z-index: 1;
}

.apps-page .app-hero .btn-back {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.apps-page .app-hero .btn-back:hover {
  background: rgba(255, 255, 255, 0.24);
}

.apps-page .app-hero-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: stretch;
}

.apps-page .app-hero-grid-paid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.apps-page .app-hero-grid-paid > .app-spotlight-card {
  width: 100%;
}

.apps-page .app-hero-grid-paid > .app-activation-card,
.apps-page .app-hero-grid-paid > .app-subscription-offers {
  width: min(920px, 100%);
  margin-inline: auto;
}

.apps-page .app-spotlight-card,
.apps-page .app-activation-card,
.apps-page .app-subscription-offers {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.99), rgba(243, 248, 255, 0.95));
  box-shadow: 0 18px 30px rgba(8, 26, 69, 0.18);
}

.apps-page .app-spotlight-card {
  position: relative;
  overflow: hidden;
  padding: clamp(15px, 2vw, 24px);
}

.apps-page .app-spotlight-card::before,
.apps-page .app-spotlight-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.apps-page .app-spotlight-card::before {
  width: 260px;
  height: 260px;
  top: -150px;
  right: -130px;
  background: radial-gradient(circle, rgba(39, 95, 217, 0.24), transparent 72%);
}

.apps-page .app-spotlight-card::after {
  width: 210px;
  height: 210px;
  left: -110px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(239, 59, 95, 0.22), transparent 72%);
}

.apps-page .app-brand-row {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 0.82rem;
  padding: 0.62rem;
  border-radius: 18px;
  border: 1px solid rgba(14, 43, 116, 0.16);
  background: linear-gradient(130deg, #f5f9ff 0%, #edf4ff 56%, #fff5f8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.apps-page .app-brand-logo {
  width: 62px;
  height: 62px;
  border-radius: 15px;
  border: 1px solid rgba(27, 42, 125, 0.2);
  object-fit: cover;
  background: #fff;
  box-shadow: 0 8px 14px rgba(15, 37, 103, 0.15);
}

.apps-page .app-brand-meta strong {
  display: block;
  font-size: 0.87rem;
  color: #143777;
}

.apps-page .app-brand-meta span {
  display: block;
  font-size: 0.78rem;
  color: #596d97;
}

.apps-page .app-shot-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(13, 40, 107, 0.22);
  background: #08245f;
  box-shadow: 0 16px 30px rgba(13, 40, 107, 0.24);
}

.apps-page .app-shot-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 14, 35, 0.4), transparent);
}

.apps-page .app-shot {
  width: 100%;
  height: clamp(245px, 34vw, 340px);
  object-fit: cover;
}

.apps-page .app-shot-grid {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.apps-page .app-shot-thumb {
  border: 1px solid rgba(13, 40, 107, 0.2);
  background: linear-gradient(140deg, #edf3ff, #f8fbff);
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}

.apps-page .app-shot-thumb img {
  width: 100%;
  height: 94px;
  object-fit: cover;
}

.apps-page .app-shot-thumb.is-active {
  border-color: rgba(25, 79, 214, 0.72);
  box-shadow: 0 0 0 2px rgba(25, 79, 214, 0.2);
}

.apps-page .app-copy {
  margin-top: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(18, 53, 122, 0.13);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 255, 0.94));
  padding: 1rem;
}

.apps-page .app-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.74rem;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #2047bd;
  border: 1px solid rgba(32, 71, 189, 0.25);
  background: linear-gradient(135deg, #eef3ff, #e5efff);
}

.apps-page .app-copy h1 {
  margin: 0.75rem 0 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 3.1vw, 2.66rem);
  line-height: 1.1;
  color: #0c2a66;
}

.apps-page .app-copy p {
  margin: 0.62rem 0 0;
  color: #5b6f97;
  font-size: 0.98rem;
}

.apps-page .app-meta-list {
  margin-top: 0.86rem;
  display: grid;
  gap: 0.58rem;
}

.apps-page .app-meta-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
  color: #5b6f97;
  font-size: 0.96rem;
}

.apps-page .app-meta-list i {
  margin-top: 0.13rem;
  color: #13995f;
}

.apps-page .app-cta-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.58rem;
}

.apps-page .app-activation-card {
  position: static;
  overflow: hidden;
  padding: clamp(15px, 2.2vw, 24px);
}

.apps-page .app-activation-card::before,
.apps-page .app-subscription-offers::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #2f73ef 0%, #ef3b5f 100%);
}

.apps-page .app-subscription-offers {
  position: static;
  overflow: hidden;
  padding: clamp(15px, 2.2vw, 24px);
}

.apps-page .app-offers-head h2 {
  margin: 0.45rem 0 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(1.32rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  color: #0c2a66;
}

.apps-page .app-offers-head p {
  margin: 0.56rem 0 0;
  color: #5b6f97;
  font-size: 0.94rem;
}

.apps-page .app-offers-list {
  margin-top: 0.92rem;
  display: grid;
  gap: 0.72rem;
}

.apps-page .app-subscription-offers .app-offers-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.apps-page .app-offer-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(18, 53, 122, 0.17);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.99) 0%, rgba(240, 246, 255, 0.95) 60%, rgba(255, 243, 247, 0.94) 100%);
  padding: 2.35rem 1.06rem 1.06rem;
  box-shadow: 0 14px 26px rgba(12, 35, 103, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apps-page .app-offer-card.is-luxury {
  border-color: rgba(148, 95, 0, 0.28);
  background: linear-gradient(155deg, #fffdf6 0%, #fff6de 100%);
}

.apps-page .app-offer-badge {
  position: absolute;
  top: 0.72rem;
  right: 0.74rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.27rem 0.58rem;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1c45c4;
  border: 1px solid rgba(28, 69, 196, 0.26);
  background: rgba(28, 69, 196, 0.1);
}

.apps-page .app-offer-card.is-luxury .app-offer-badge {
  color: #7c5100;
  border-color: rgba(124, 81, 0, 0.3);
  background: rgba(245, 177, 26, 0.16);
}

.apps-page .app-offer-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #2f73ef, #ef3b5f);
}

.apps-page .app-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(14, 37, 110, 0.17);
}

.apps-page .app-offer-card h3 {
  margin: 0.42rem 0 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
  color: #0f2d69;
}

.apps-page .app-offer-price {
  margin: 0.36rem 0 0.26rem;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.52rem;
  font-weight: 700;
  color: #1b40b3;
}

.apps-page .app-offer-card p {
  margin: 0;
  color: #5b6f97;
  font-size: 0.9rem;
}

.apps-page .app-offer-card .btn {
  margin-top: 0.7rem;
  width: 100%;
}

.apps-page .app-activation-card h2 {
  margin: 0.64rem 0 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(1.38rem, 2.25vw, 1.96rem);
  line-height: 1.15;
  color: #0c2a66;
}

.apps-page .app-activation-card p {
  margin: 0.58rem 0 0;
  color: #5b6f97;
}

.apps-page .plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #754700;
  border: 1px solid rgba(245, 177, 26, 0.4);
  background: linear-gradient(135deg, #fff3cf, #ffe6ad);
}

.apps-page .price-row {
  margin-top: 0.82rem;
  display: flex;
  align-items: baseline;
  gap: 0.68rem;
}

.apps-page .price-main {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 3.3vw, 2.75rem);
  font-weight: 800;
  color: #11357f;
  line-height: 1;
}

.apps-page .price-old {
  color: #7b87a4;
  text-decoration: line-through;
  font-size: 1.02rem;
  font-weight: 600;
}

.apps-page .price-sub,
.apps-page .meta-line {
  color: #5b6f97;
  font-size: 0.9rem;
}

.apps-page .plan-list {
  margin-top: 0.76rem;
  display: grid;
  gap: 0.48rem;
}

.apps-page .plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.44rem;
  font-size: 0.93rem;
  color: #5b6f97;
}

.apps-page .plan-list i {
  margin-top: 0.1rem;
  color: var(--apps-ok);
}

.apps-page .apps-section-head,
.apps-page .apps-block-head {
  text-align: center;
  max-width: 790px;
  margin: 0 auto 1.25rem;
}

.apps-page .apps-section-head h2,
.apps-page .apps-block-head h2 {
  margin: 0.5rem 0 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(1.54rem, 2.4vw, 2.2rem);
  line-height: 1.16;
}

.apps-page .apps-section-head p,
.apps-page .apps-block-head p {
  margin-top: 0.55rem;
  color: var(--apps-muted);
  font-size: 1rem;
}

.apps-page .apps-section-kicker,
.apps-page .apps-block-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: #1c45c4;
}

.apps-page .apps-section-kicker::before,
.apps-page .apps-block-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--apps-accent);
  box-shadow: 0 0 0 3px rgba(245, 177, 26, 0.16);
}

.apps-page .why-choose-grid,
.apps-page .features-grid,
.apps-page .related-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.apps-page .features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.apps-page .why-choose-item,
.apps-page .feature-card,
.apps-page .related-plan-card,
.apps-page .paysec-card,
.apps-page .uptime-main-card,
.apps-page .uptime-quality-card {
  border-radius: var(--apps-radius-md);
  border: 1px solid var(--apps-border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.9));
  box-shadow: 0 10px 22px rgba(23, 48, 146, 0.09);
}

.apps-page .why-choose-item,
.apps-page .feature-card,
.apps-page .related-plan-card,
.apps-page .paysec-card,
.apps-page .uptime-main-card,
.apps-page .uptime-quality-card {
  padding: 1rem;
}

.apps-page .why-choose-item .icon,
.apps-page .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #2b57d6, #1d378f);
  box-shadow: 0 9px 18px rgba(33, 77, 212, 0.3);
}

.apps-page .why-choose-item h3,
.apps-page .feature-card h3,
.apps-page .related-plan-card h3,
.apps-page .paysec-card h3,
.apps-page .uptime-main-card h3,
.apps-page .uptime-quality-card h3 {
  margin: 0.6rem 0 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
}

.apps-page .why-choose-item p,
.apps-page .feature-card p,
.apps-page .related-plan-card p,
.apps-page .paysec-list li,
.apps-page .uptime-quality-list li {
  margin-top: 0.45rem;
  color: var(--apps-muted);
  font-size: 0.95rem;
}

.apps-page .apps-compare-section {
  position: relative;
}

.apps-page .compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.apps-page .compare-vs,
.apps-page .compare-icon,
.apps-page .compare-dot {
  display: none;
}

.apps-page .compare-card {
  border-radius: var(--apps-radius-lg);
  overflow: hidden;
  border: 1px solid var(--apps-border);
  background: #fff;
}

.apps-page .compare-card-good {
  border-top: 4px solid rgba(20, 160, 98, 0.85);
}

.apps-page .compare-card-bad {
  border-top: 4px solid rgba(229, 90, 95, 0.85);
}

.apps-page .compare-top {
  text-align: center;
  padding: 0.9rem 0.9rem 0.8rem;
  border-bottom: 1px solid var(--apps-border);
}

.apps-page .compare-top h3 {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.2rem;
}

.apps-page .compare-badge {
  margin-top: 0.38rem;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.44rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
}

.apps-page .compare-badge-good {
  color: #0b8b4f;
  border: 1px solid rgba(11, 139, 79, 0.3);
  background: rgba(11, 139, 79, 0.12);
}

.apps-page .compare-badge-bad {
  color: #bf434a;
  border: 1px solid rgba(191, 67, 74, 0.32);
  background: rgba(191, 67, 74, 0.11);
}

.apps-page .compare-list {
  padding: 0.8rem;
  display: grid;
  gap: 0.5rem;
}

.apps-page .compare-list li {
  border-radius: 12px;
  border: 1px solid var(--apps-border);
  background: #f8faff;
  padding: 0.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: start;
}

.apps-page .compare-list-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.apps-page .compare-list-good .compare-list-icon {
  color: var(--apps-ok);
  border: 1px solid rgba(20, 160, 98, 0.3);
  background: rgba(20, 160, 98, 0.12);
}

.apps-page .compare-list-bad .compare-list-icon {
  color: var(--apps-bad);
  border: 1px solid rgba(229, 90, 95, 0.3);
  background: rgba(229, 90, 95, 0.12);
}

.apps-page .compare-list li strong {
  display: block;
  font-size: 1rem;
}

.apps-page .compare-list li small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.92rem;
  color: var(--apps-muted);
}

.apps-page .uptime-proof-grid,
.apps-page .payments-security-grid,
.apps-page .multiscreen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.apps-page .uptime-main-metrics {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.apps-page .uptime-main-metrics div {
  border-radius: 12px;
  border: 1px solid var(--apps-border);
  background: #f8faff;
  padding: 0.62rem;
}

.apps-page .uptime-main-metrics strong {
  display: block;
  font-size: 1.24rem;
  line-height: 1.05;
}

.apps-page .uptime-main-metrics span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.84rem;
  color: var(--apps-muted);
}

.apps-page .uptime-status-strip {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.36rem;
}

.apps-page .uptime-status-strip span {
  border-radius: 999px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.18rem;
  border: 1px solid rgba(20, 160, 98, 0.34);
  background: rgba(20, 160, 98, 0.16);
  color: #0e7f4b;
}

.apps-page .uptime-quality-list,
.apps-page .paysec-list {
  margin-top: 0.62rem;
  display: grid;
  gap: 0.48rem;
}

.apps-page .uptime-quality-list li,
.apps-page .paysec-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.42rem;
  margin-top: 0;
}

.apps-page .uptime-quality-list i,
.apps-page .paysec-list i {
  margin-top: 0.11rem;
  color: var(--apps-ok);
}

.apps-page .multiscreen-content h2 {
  margin: 0.45rem 0 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.apps-page .multiscreen-content p {
  margin-top: 0.58rem;
  color: var(--apps-muted);
}

.apps-page .multiscreen-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.apps-page .device-image {
  border-radius: 14px;
  border: 1px solid var(--apps-border);
  box-shadow: 0 10px 22px rgba(23, 48, 146, 0.13);
  object-fit: cover;
  height: 160px;
}

.apps-page .apps-compat-image {
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 14px 22px rgba(23, 48, 146, 0.16));
}

.apps-page .apps-cta-section .apps-container {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.apps-page .cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
  gap: 14px;
  align-items: center;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 8% 12%, rgba(134, 180, 255, 0.28), transparent 34%),
    radial-gradient(circle at 96% 90%, rgba(255, 120, 164, 0.28), transparent 38%),
    linear-gradient(130deg, #071a45 0%, #184195 44%, #4b2b89 70%, #cc2b5e 100%);
  color: #ffffff;
  padding: 12px;
  box-shadow: 0 22px 46px rgba(6, 17, 44, 0.25);
}

.apps-page .cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 18px);
  opacity: 0.16;
  pointer-events: none;
}

.apps-page .cta-band > * {
  position: relative;
  z-index: 1;
}

.apps-page .cta-content {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: #ffffff;
  color: #0f1a31;
}

.apps-page .cta-band-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(24, 65, 149, 0.24);
  background: rgba(20, 72, 179, 0.12);
  color: #194287;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 800;
}

.apps-page .cta-content h2 {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.1;
  color: #0a2250;
}

.apps-page .cta-content p {
  margin: 0;
  color: #31456d;
  font-size: 1rem;
}

.apps-page .cta-offer-highlight {
  display: grid;
  gap: 6px;
  border-radius: 16px;
  border: 1px solid rgba(23, 67, 150, 0.16);
  background: linear-gradient(140deg, #f7faff 0%, #edf4ff 55%, #fff4f7 100%);
  padding: 12px;
}

.apps-page .cta-offer-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.apps-page .cta-offer-deal {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0d2a62;
}

.apps-page .cta-offer-bonus {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #7a4400;
  background: linear-gradient(120deg, #ffe8b6, #ffd375);
  box-shadow: 0 8px 16px rgba(190, 123, 12, 0.2);
}

.apps-page .cta-offer-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
}

.apps-page .cta-price-now {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 2.7vw, 2.2rem);
  line-height: 1;
  font-weight: 900;
  color: #b61636;
}

.apps-page .cta-price-old {
  font-size: 1rem;
  font-weight: 700;
  color: #5a6a89;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.apps-page .cta-price-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(120deg, #d61f3f, #ef3b5f);
}

.apps-page .cta-offer-note {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #243a64;
}

.apps-page .cta-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.apps-page .cta-time-box {
  display: grid;
  justify-items: center;
  gap: 2px;
  border-radius: 12px;
  border: 1px solid rgba(23, 67, 150, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 243, 255, 0.92));
  padding: 8px 6px;
}

.apps-page .cta-time-box strong {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  color: #0d2a62;
}

.apps-page .cta-time-box span {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4c628e;
}

.apps-page .cta-actions {
  margin-top: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.apps-page .cta-actions .btn {
  min-height: 46px;
}

.apps-page .cta-band .btn-primary {
  box-shadow: 0 14px 24px rgba(211, 24, 67, 0.34);
}

.apps-page .cta-band .btn-secondary {
  background: rgba(20, 72, 179, 0.1);
  border: 1px solid rgba(20, 72, 179, 0.28);
  color: #0a2250;
  box-shadow: none;
}

.apps-page .cta-visual {
  min-height: 360px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.apps-page .cta-person {
  width: min(440px, 100%);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(7, 13, 35, 0.42));
}

.apps-page .related-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  border-radius: 999px;
  padding: 0.24rem 0.52rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #2146ba;
  background: #eaf0ff;
  border: 1px solid rgba(33, 70, 186, 0.22);
}

.apps-page .related-price {
  margin: 0.34rem 0 0.42rem;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1b40b3;
}

.apps-page .related-plan-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(18, 53, 122, 0.16);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 247, 255, 0.95) 56%, rgba(255, 244, 247, 0.93) 100%);
  padding: 2.2rem 1rem 1rem;
  box-shadow: 0 12px 26px rgba(16, 41, 117, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apps-page .related-plan-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #2f73ef, #ef3b5f);
}

.apps-page .related-plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 32px rgba(16, 41, 117, 0.16);
}

.apps-page .related-badge {
  position: absolute;
  top: 0.68rem;
  right: 0.68rem;
  margin: 0;
}

.apps-page .apps-footer-note {
  padding: 1.3rem 0 2rem;
  text-align: center;
  color: #6a7699;
  font-size: 0.86rem;
  font-weight: 700;
}

.apps-page .reveal {
  opacity: 1;
  transform: none;
}

.apps-page.modal-open {
  overflow: hidden;
}

.apps-page .checkout-modal,
.apps-page .order-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.apps-page .checkout-modal.is-open,
.apps-page .order-confirm-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.apps-page .checkout-modal-backdrop,
.apps-page .order-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 52, 0.66);
  backdrop-filter: blur(3px);
}

.apps-page .checkout-modal-dialog,
.apps-page .order-confirm-dialog {
  position: relative;
  width: min(640px, 94%);
  max-height: calc(100vh - 26px);
  overflow: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: linear-gradient(175deg, #f8faff 0%, #edf2ff 100%);
  box-shadow: 0 30px 80px rgba(8, 18, 45, 0.45);
  padding: clamp(16px, 2.5vw, 24px);
}

.apps-page .modal-close,
.apps-page .order-confirm-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 0;
  background: #e9efff;
  color: #5b6c99;
  font-size: 1.22rem;
  cursor: pointer;
}

.apps-page .modal-head h2 {
  margin: 0;
  padding-right: 46px;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.apps-page .modal-subtitle {
  margin-top: 0.36rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6978a3;
  font-weight: 800;
}

.apps-page .checkout-form {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.78rem;
}

.apps-page .field-label {
  display: block;
  margin-bottom: 0.36rem;
  color: #6778a5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.74rem;
  font-weight: 800;
}

.apps-page .field-input {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(26, 63, 184, 0.2);
  background: #fff;
  color: #25325f;
  padding: 0.62rem 0.84rem;
  font-family: inherit;
  font-size: 1rem;
}

.apps-page .field-input:focus {
  outline: none;
  border-color: rgba(30, 79, 210, 0.58);
  box-shadow: 0 0 0 3px rgba(30, 79, 210, 0.15);
}

.apps-page .contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.apps-page .contact-method-btn {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(26, 63, 184, 0.24);
  background: #fff;
  color: #34487e;
  font-weight: 800;
  cursor: pointer;
}

.apps-page .contact-method-btn.is-active {
  background: #eaf2ff;
  color: #1d46be;
  border-color: rgba(29, 70, 190, 0.44);
}

.apps-page .plan-preview {
  border-radius: 12px;
  border: 1px solid rgba(26, 63, 184, 0.18);
  background: #f7faff;
  padding: 0.75rem 0.85rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
}

.apps-page .preview-kicker,
.apps-page .preview-price .label {
  color: #7a87ad;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 800;
}

.apps-page .preview-plan {
  margin-top: 0.12rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.apps-page .preview-price {
  text-align: right;
}

.apps-page .preview-price .value {
  display: block;
  margin-top: 0.08rem;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.apps-page .modal-submit,
.apps-page .order-confirm-action {
  min-height: 54px;
  border-radius: 14px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(120deg, #1d53d6 0%, #1b3dad 100%);
}

.apps-page .form-status {
  display: none;
  border-radius: 10px;
  padding: 0.58rem 0.74rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.apps-page .form-status.is-visible {
  display: block;
}

.apps-page .form-status.is-success {
  color: #0e7f4b;
  background: #def6ea;
  border: 1px solid rgba(14, 127, 75, 0.22);
}

.apps-page .form-status.is-warning {
  color: #8a5500;
  background: #fff0d3;
  border: 1px solid rgba(138, 85, 0, 0.24);
}

.apps-page .form-status.is-error {
  color: #9a2b31;
  background: #ffe3e5;
  border: 1px solid rgba(154, 43, 49, 0.24);
}

.apps-page .contact-warning {
  border-radius: 12px;
  border: 1px solid rgba(232, 164, 43, 0.46);
  background: #fff3dd;
  padding: 0.72rem 0.8rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
}

.apps-page .contact-warning i {
  margin-top: 0.1rem;
  color: #be7a00;
}

.apps-page .trust-row {
  padding-top: 0.62rem;
  border-top: 1px dashed rgba(27, 42, 125, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.82rem;
  color: #6a7698;
  font-weight: 700;
}

.apps-page .order-confirm-dialog {
  width: min(560px, 94%);
  display: grid;
  gap: 0.76rem;
}

.apps-page .order-confirm-brand {
  position: absolute;
  left: 16px;
  top: 14px;
  width: 108px;
}

.apps-page .order-confirm-brand img {
  width: 100%;
  height: auto;
}

.apps-page .order-confirm-status {
  justify-self: end;
  margin-right: 42px;
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #0f8750;
  background: #def7ea;
  border: 1px solid rgba(15, 135, 80, 0.24);
}

.apps-page .order-confirm-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(130deg, #21bf63, #13945f);
  font-size: 1.8rem;
}

.apps-page .order-confirm-dialog h3 {
  margin: 0;
  text-align: center;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.5rem;
}

.apps-page .order-confirm-message,
.apps-page .order-confirm-meta {
  margin: 0;
  text-align: center;
  color: #617196;
}

.apps-page .order-confirm-steps {
  list-style: none;
  margin: 0;
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(27, 42, 125, 0.16);
  background: #f7faff;
  display: grid;
  gap: 0.45rem;
}

.apps-page .order-confirm-steps li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.92rem;
  color: #51618a;
}

.apps-page .order-confirm-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2b57d6;
}

@media (max-width: 980px) {
  .apps-page {
    font-size: 15px;
  }

  .apps-page .app-hero .apps-container {
    border-radius: 22px;
    padding: 14px;
  }

  .apps-page .app-hero .apps-container::after {
    width: 280px;
    height: 280px;
    right: -170px;
    top: -170px;
  }

  .apps-page .app-hero-grid-paid,
  .apps-page .features-grid,
  .apps-page .compare-grid,
  .apps-page .uptime-proof-grid,
  .apps-page .payments-security-grid,
  .apps-page .multiscreen-grid,
  .apps-page .related-plan-grid,
  .apps-page .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .apps-page .app-activation-card {
    position: static;
  }

  .apps-page .app-subscription-offers {
    position: static;
  }

  .apps-page .app-subscription-offers .app-offers-list {
    grid-template-columns: 1fr;
  }

  .apps-page .app-copy h1 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .apps-page .app-shot {
    height: clamp(220px, 52vw, 320px);
  }

  .apps-page .apps-section {
    padding: 30px 0;
  }

  .apps-page .apps-section:not(.app-hero) .apps-container {
    padding: 14px;
    border-radius: 14px;
  }

  .apps-page .cta-band {
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 24px;
  }

  .apps-page .cta-content {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .apps-page .cta-visual {
    min-height: 270px;
  }

  .apps-page .cta-person {
    width: min(360px, 92vw);
    max-height: 270px;
  }

  .apps-page .uptime-main-metrics {
    grid-template-columns: 1fr;
  }

  .apps-page .uptime-status-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .apps-page .app-hero .apps-container {
    border-radius: 18px;
    padding: 12px;
  }

  .apps-page .app-hero .btn-back {
    width: 100%;
  }

  .apps-page .app-cta-row {
    grid-template-columns: 1fr;
  }

  .apps-page .app-shot {
    height: clamp(200px, 58vw, 250px);
  }

  .apps-page .contact-methods,
  .apps-page .plan-preview {
    grid-template-columns: 1fr;
  }

  .apps-page .preview-price {
    text-align: left;
  }

  .apps-page .app-shot-thumb img {
    height: 62px;
  }

  .apps-page .device-image {
    height: 132px;
  }

  .apps-page .apps-compat-image {
    width: min(100%, 520px);
  }

  .apps-page .cta-content {
    padding: 14px 12px;
  }

  .apps-page .cta-content h2 {
    font-size: 1.36rem;
  }

  .apps-page .cta-offer-deal {
    font-size: 0.84rem;
  }

  .apps-page .cta-offer-note {
    font-size: 0.78rem;
  }

  .apps-page .cta-countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apps-page .cta-actions .btn {
    width: 100%;
  }

  .apps-page .cta-visual {
    min-height: 220px;
  }

  .apps-page .cta-person {
    width: min(300px, 90vw);
    max-height: 220px;
  }

  .apps-page .order-confirm-status {
    justify-self: start;
    margin-right: 0;
    margin-top: 24px;
  }
}

/* Simple Pro UI Reset */
.apps-page {
  --apps-primary: #1d4ed8;
  --apps-primary-soft: #2563eb;
  --apps-accent: #0f172a;
  --apps-bg: #f3f4f6;
  --apps-surface: #ffffff;
  --apps-border: #e5e7eb;
  --apps-text: #111827;
  --apps-muted: #4b5563;
  --apps-ok: #16a34a;
  --apps-bad: #dc2626;
  --apps-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  --apps-radius-lg: 16px;
  --apps-radius-md: 12px;
  --apps-radius-sm: 10px;
}

.apps-page {
  background: #f3f4f6;
  color: var(--apps-text);
}

.apps-page .apps-section {
  padding: clamp(30px, 5vw, 54px) 0;
}

.apps-page .apps-section:not(.app-hero) .apps-container,
.apps-page .app-hero .apps-container {
  border-radius: var(--apps-radius-lg);
  border: 1px solid var(--apps-border);
  background: var(--apps-surface);
  box-shadow: var(--apps-shadow);
}

.apps-page .app-hero .apps-container::before,
.apps-page .app-hero .apps-container::after,
.apps-page .app-spotlight-card::before,
.apps-page .app-spotlight-card::after,
.apps-page .cta-band::before {
  content: none;
}

.apps-page .btn {
  border-radius: 10px;
  min-height: 42px;
  font-weight: 700;
  box-shadow: none;
  transform: none;
}

.apps-page .btn:hover {
  transform: none;
}

.apps-page .btn-primary {
  background: var(--apps-primary);
  color: #fff;
  border: 1px solid var(--apps-primary);
}

.apps-page .btn-secondary,
.apps-page .btn-outline,
.apps-page .app-hero .btn-back {
  background: #fff;
  color: #1f2937;
  border: 1px solid #d1d5db;
  box-shadow: none;
}

.apps-page .app-hero .btn-back:hover {
  background: #f9fafb;
}

.apps-page .app-spotlight-card,
.apps-page .app-activation-card,
.apps-page .app-subscription-offers,
.apps-page .why-choose-item,
.apps-page .feature-card,
.apps-page .related-plan-card,
.apps-page .paysec-card,
.apps-page .uptime-main-card,
.apps-page .uptime-quality-card,
.apps-page .compare-card,
.apps-page .app-offer-card,
.apps-page .cta-content,
.apps-page .cta-offer-highlight,
.apps-page .checkout-modal-dialog,
.apps-page .order-confirm-dialog {
  border-radius: 12px;
  border: 1px solid var(--apps-border);
  background: #fff;
  box-shadow: none;
}

.apps-page .app-brand-row,
.apps-page .app-copy,
.apps-page .plan-preview,
.apps-page .contact-warning,
.apps-page .compare-list li,
.apps-page .uptime-main-metrics div {
  border-radius: 10px;
  border: 1px solid var(--apps-border);
  background: #f9fafb;
  box-shadow: none;
}

.apps-page .app-brand-meta strong,
.apps-page .app-copy h1,
.apps-page .app-activation-card h2,
.apps-page .app-offers-head h2,
.apps-page .apps-section-head h2,
.apps-page .apps-block-head h2,
.apps-page .why-choose-item h3,
.apps-page .feature-card h3,
.apps-page .related-plan-card h3,
.apps-page .paysec-card h3,
.apps-page .uptime-main-card h3,
.apps-page .uptime-quality-card h3,
.apps-page .compare-top h3,
.apps-page .cta-content h2 {
  color: #111827;
}

.apps-page .app-copy p,
.apps-page .app-meta-list li,
.apps-page .plan-list li,
.apps-page .price-sub,
.apps-page .meta-line,
.apps-page .apps-section-head p,
.apps-page .apps-block-head p,
.apps-page .why-choose-item p,
.apps-page .feature-card p,
.apps-page .related-plan-card p,
.apps-page .paysec-list li,
.apps-page .uptime-quality-list li,
.apps-page .compare-list li small,
.apps-page .multiscreen-content p,
.apps-page .cta-content p,
.apps-page .cta-offer-note,
.apps-page .apps-footer-note,
.apps-page .modal-subtitle,
.apps-page .order-confirm-message,
.apps-page .order-confirm-meta,
.apps-page .trust-row {
  color: var(--apps-muted);
}

.apps-page .app-chip,
.apps-page .plan-badge,
.apps-page .app-offer-badge,
.apps-page .related-badge,
.apps-page .apps-section-kicker,
.apps-page .apps-block-kicker,
.apps-page .compare-badge {
  border-radius: 999px;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: #1d4ed8;
  box-shadow: none;
}

.apps-page .apps-section-kicker::before,
.apps-page .apps-block-kicker::before,
.apps-page .app-offer-card::before,
.apps-page .related-plan-card::before {
  display: none;
}

.apps-page .price-main,
.apps-page .app-offer-price,
.apps-page .related-price,
.apps-page .cta-price-now,
.apps-page .preview-price .value {
  color: #111827;
}

.apps-page .price-old,
.apps-page .cta-price-old {
  color: #6b7280;
}

.apps-page .compare-card-good,
.apps-page .compare-card-bad {
  border-top: 1px solid var(--apps-border);
}

.apps-page .compare-list-good .compare-list-icon,
.apps-page .compare-list-bad .compare-list-icon {
  border: 1px solid var(--apps-border);
  background: #fff;
  color: #374151;
}

.apps-page .uptime-status-strip span {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.apps-page .apps-compat-image,
.apps-page .cta-person {
  filter: none;
}

.apps-page .cta-band {
  display: block;
  border-radius: 12px;
  border: 1px solid var(--apps-border);
  background: #fff;
  color: var(--apps-text);
  padding: 0;
  box-shadow: none;
}

.apps-page .cta-content {
  padding: 16px;
  gap: 10px;
}

.apps-page .cta-offer-bonus,
.apps-page .cta-price-save {
  background: #eef2ff;
  color: #1e3a8a;
  border: 1px solid #c7d2fe;
  box-shadow: none;
}

.apps-page .cta-visual {
  display: none;
}

.apps-page .checkout-modal-backdrop,
.apps-page .order-confirm-backdrop {
  background: rgba(17, 24, 39, 0.46);
  backdrop-filter: blur(2px);
}

.apps-page .modal-close,
.apps-page .order-confirm-close {
  background: #f3f4f6;
  color: #374151;
}

.apps-page .modal-submit,
.apps-page .order-confirm-action {
  background: var(--apps-primary);
  color: #fff;
}

.apps-page .order-confirm-icon {
  background: var(--apps-primary);
}

.apps-page .contact-method-btn.is-active {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.apps-page .contact-warning {
  border-color: #fde68a;
  background: #fffbeb;
}

@media (max-width: 980px) {
  .apps-page .app-hero .apps-container {
    padding: 14px;
    border-radius: 12px;
  }

  .apps-page .apps-section:not(.app-hero) .apps-container {
    border-radius: 12px;
  }
}

/* App Hero Refresh 2026-04-28 */
.apps-page .app-hero .apps-container {
  position: relative;
  overflow: hidden;
  padding: clamp(14px, 2.5vw, 24px);
  border-radius: 28px;
  border: 1px solid rgba(143, 191, 255, 0.34);
  background:
    radial-gradient(circle at 10% 12%, rgba(139, 220, 255, 0.2), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(255, 131, 173, 0.2), transparent 36%),
    linear-gradient(145deg, #041a48 0%, #0b2f7c 46%, #cf245a 100%);
  box-shadow: 0 28px 55px rgba(4, 15, 43, 0.36);
}

.apps-page .app-hero .apps-container::before,
.apps-page .app-hero .apps-container::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.apps-page .app-hero .apps-container::before {
  inset: 0;
  background: repeating-linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.07) 0 2px,
    transparent 2px 24px
  );
  opacity: 0.24;
}

.apps-page .app-hero .apps-container::after {
  width: 430px;
  height: 430px;
  top: -270px;
  right: -250px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), transparent 72%);
}

.apps-page .app-hero-top,
.apps-page .app-hero-grid {
  position: relative;
  z-index: 1;
}

.apps-page .app-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.apps-page .app-hero .btn-back {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.36);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.33);
}

.apps-page .app-hero .btn-back:hover {
  background: rgba(255, 255, 255, 0.26);
}

.apps-page .app-hero-pulse {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  white-space: nowrap;
}

.apps-page .app-hero-pulse i {
  color: #ffe18d;
}

.apps-page .app-hero-grid {
  margin-top: 12px;
  gap: 14px;
}

.apps-page .app-spotlight-card,
.apps-page .app-activation-card,
.apps-page .app-subscription-offers {
  border-radius: 24px;
  border: 1px solid rgba(216, 234, 255, 0.72);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.94));
  box-shadow: 0 20px 36px rgba(8, 24, 61, 0.18);
}

.apps-page .app-brand-row {
  background: linear-gradient(130deg, #eef4ff 0%, #e9f2ff 56%, #fff0f5 100%);
}

.apps-page .app-copy {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94));
}

.apps-page .app-copy h1 {
  color: #0a2b6f;
}

.apps-page .app-value-strip {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.apps-page .app-value-strip span {
  display: grid;
  gap: 2px;
  border-radius: 11px;
  border: 1px solid rgba(30, 85, 186, 0.2);
  padding: 8px 9px;
  background: linear-gradient(135deg, #f8fbff, #e9f2ff);
  color: #355181;
  font-size: 0.78rem;
  font-weight: 600;
}

.apps-page .app-value-strip strong {
  font-size: 0.9rem;
  color: #0a2b6f;
}

.apps-page .app-trust-strip {
  margin: 12px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 11px;
  padding: 9px 11px;
  border: 1px solid rgba(19, 160, 98, 0.25);
  background: #effdf6;
  color: #2f556f;
  font-size: 0.84rem;
}

.apps-page .app-trust-strip i {
  color: #0f9f62;
}

.apps-page .app-side-topline {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.apps-page .app-side-topline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(29, 78, 216, 0.2);
  background: rgba(239, 246, 255, 0.96);
  color: #1d4ed8;
  font-size: 0.76rem;
  font-weight: 700;
}

@media (min-width: 1050px) {
  .apps-page .app-hero-grid-paid {
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
    align-items: start;
  }

  .apps-page .app-hero-grid-paid > .app-activation-card,
  .apps-page .app-hero-grid-paid > .app-subscription-offers {
    width: 100%;
    margin-inline: 0;
    position: sticky;
    top: 24px;
  }

  .apps-page .app-subscription-offers .app-offers-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .apps-page .app-hero .apps-container {
    border-radius: 22px;
  }

  .apps-page .app-hero-top {
    flex-direction: column;
    align-items: stretch;
  }

  .apps-page .app-hero-pulse {
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .apps-page .app-value-strip {
    grid-template-columns: 1fr;
  }
}

/* Smarters Free Hero Redesign 2026-04-28 */
.apps-page.apps-free-page .app-hero .apps-container {
  border: 1px solid rgba(18, 53, 122, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(47, 115, 239, 0.16), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(239, 59, 95, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  box-shadow: 0 18px 34px rgba(9, 29, 70, 0.12);
}

.apps-page.apps-free-page .app-hero .apps-container::before,
.apps-page.apps-free-page .app-hero .apps-container::after {
  content: none;
}

.apps-page.apps-free-page .app-smarters-hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.apps-page.apps-free-page .app-hero .btn-back {
  background: #ffffff;
  color: #12357a;
  border: 1px solid rgba(18, 53, 122, 0.28);
  box-shadow: 0 8px 18px rgba(12, 37, 92, 0.12);
}

.apps-page.apps-free-page .app-hero .btn-back:hover {
  background: #f2f7ff;
  color: #0f2f6b;
}

.apps-page.apps-free-page .app-smarters-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 115, 239, 0.24);
  background: rgba(255, 255, 255, 0.9);
  color: #1a4ea9;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.apps-page.apps-free-page .app-smarters-copy .app-chip {
  border-color: rgba(20, 66, 156, 0.28);
  background: #edf4ff;
  color: #18449f;
}

.apps-page.apps-free-page .app-smarters-hero-grid {
  margin-top: 12px;
}

.apps-page.apps-free-page .app-smarters-hero-card {
  padding: clamp(16px, 2.2vw, 24px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.95));
  box-shadow: 0 14px 28px rgba(10, 35, 88, 0.12);
}

.apps-page.apps-free-page .app-smarters-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: start;
}

.apps-page.apps-free-page .app-smarters-copy h1 {
  margin: 10px 0 0;
  color: #0a2a66;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  line-height: 1.08;
}

.apps-page.apps-free-page .app-smarters-copy p {
  color: #4b638f;
}

.apps-page.apps-free-page .app-smarters-copy .app-meta-list {
  margin-top: 12px;
}

.apps-page.apps-free-page .app-smarters-quick {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.apps-page.apps-free-page .app-smarters-quick span {
  display: grid;
  gap: 2px;
  border-radius: 12px;
  padding: 9px;
  border: 1px solid rgba(25, 79, 214, 0.19);
  background: linear-gradient(135deg, #f9fbff, #edf4ff);
  font-size: 0.78rem;
  color: #3f5a89;
}

.apps-page.apps-free-page .app-smarters-quick strong {
  font-size: 0.92rem;
  color: #12357a;
}

.apps-page.apps-free-page .app-smarters-note {
  margin: 12px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(20, 160, 98, 0.24);
  background: #effdf6;
  color: #2b5369;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.84rem;
}

.apps-page.apps-free-page .app-smarters-note i {
  color: #13995f;
}

.apps-page.apps-free-page .app-smarters-media .app-brand-row {
  margin-bottom: 10px;
}

.apps-page.apps-free-page .app-smarters-media .app-shot {
  height: clamp(240px, 30vw, 330px);
}

.apps-page.apps-free-page .app-smarters-media .app-shot-thumb img {
  height: 82px;
}

@media (max-width: 980px) {
  .apps-page.apps-free-page .app-smarters-layout {
    grid-template-columns: 1fr;
  }

  .apps-page.apps-free-page .app-smarters-hero-head {
    flex-direction: column;
    align-items: stretch;
  }

  .apps-page.apps-free-page .app-smarters-kicker {
    justify-content: center;
  }

  .apps-page.apps-free-page .app-smarters-quick {
    grid-template-columns: 1fr;
  }
}

/* Paid Pages Hero Aligned To Smarters Layout */
.apps-page.apps-paid-page .app-hero .apps-container {
  border: 1px solid rgba(18, 53, 122, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(47, 115, 239, 0.16), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(239, 59, 95, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  box-shadow: 0 18px 34px rgba(9, 29, 70, 0.12);
}

.apps-page.apps-paid-page .app-hero .apps-container::before,
.apps-page.apps-paid-page .app-hero .apps-container::after {
  content: none;
}

.apps-page.apps-paid-page .app-unified-hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.apps-page.apps-paid-page .app-hero .btn-back {
  background: #ffffff;
  color: #12357a;
  border: 1px solid rgba(18, 53, 122, 0.28);
  box-shadow: 0 8px 18px rgba(12, 37, 92, 0.12);
}

.apps-page.apps-paid-page .app-hero .btn-back:hover {
  background: #f2f7ff;
  color: #0f2f6b;
}

.apps-page.apps-paid-page .app-unified-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 115, 239, 0.24);
  background: rgba(255, 255, 255, 0.9);
  color: #1a4ea9;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.apps-page.apps-paid-page .app-unified-kicker i {
  color: #1b4fb2;
}

.apps-page.apps-paid-page .app-unified-hero-grid {
  margin-top: 12px;
}

.apps-page.apps-paid-page .app-unified-hero-card {
  padding: clamp(16px, 2.2vw, 24px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.95));
  box-shadow: 0 14px 28px rgba(10, 35, 88, 0.12);
}

.apps-page.apps-paid-page .app-unified-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: start;
}

.apps-page.apps-paid-page .app-unified-copy h1 {
  margin: 10px 0 0;
  color: #0a2a66;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  line-height: 1.08;
}

.apps-page.apps-paid-page .app-unified-copy p {
  color: #4b638f;
}

.apps-page.apps-paid-page .app-unified-copy .app-chip {
  border-color: rgba(20, 66, 156, 0.28);
  background: #edf4ff;
  color: #18449f;
}

.apps-page.apps-paid-page .app-unified-copy .app-meta-list {
  margin-top: 12px;
}

.apps-page.apps-paid-page .app-unified-quick {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.apps-page.apps-paid-page .app-unified-quick span {
  display: grid;
  gap: 2px;
  border-radius: 12px;
  padding: 9px;
  border: 1px solid rgba(25, 79, 214, 0.19);
  background: linear-gradient(135deg, #f9fbff, #edf4ff);
  font-size: 0.78rem;
  color: #3f5a89;
}

.apps-page.apps-paid-page .app-unified-quick strong {
  font-size: 0.92rem;
  color: #12357a;
}

.apps-page.apps-paid-page .app-unified-note {
  margin: 12px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(20, 160, 98, 0.24);
  background: #effdf6;
  color: #2b5369;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.84rem;
}

.apps-page.apps-paid-page .app-unified-note i {
  color: #13995f;
}

.apps-page .apps-section-kicker,
.apps-page .apps-block-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(29, 78, 216, 0.24);
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.apps-page .apps-section-kicker i,
.apps-page .apps-block-kicker i {
  color: #1d4ed8;
}

.apps-page .app-chip {
  padding: 0.38rem 0.78rem;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}

.apps-page.apps-paid-page .app-unified-media .app-brand-row {
  margin-bottom: 10px;
}

.apps-page.apps-paid-page .app-unified-media .app-shot {
  height: clamp(240px, 30vw, 330px);
}

.apps-page.apps-paid-page .app-unified-media .app-shot-thumb img {
  height: 82px;
}

@media (max-width: 980px) {
  .apps-page.apps-paid-page .app-unified-layout {
    grid-template-columns: 1fr;
  }

  .apps-page.apps-paid-page .app-unified-hero-head {
    flex-direction: column;
    align-items: stretch;
  }

  .apps-page.apps-paid-page .app-unified-kicker {
    justify-content: center;
  }

  .apps-page.apps-paid-page .app-unified-quick {
    grid-template-columns: 1fr;
  }
}

/* CTA aligned with home page */
.apps-page .apps-cta-section .cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 16px;
  align-items: center;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 8% 12%, rgba(134, 180, 255, 0.28), transparent 34%),
    radial-gradient(circle at 96% 90%, rgba(255, 120, 164, 0.28), transparent 38%),
    linear-gradient(130deg, #071a45 0%, #184195 44%, #4b2b89 70%, #cc2b5e 100%);
  color: #ffffff;
  padding: 14px;
  box-shadow: 0 26px 56px rgba(6, 17, 44, 0.28);
}

.apps-page .apps-cta-section .cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 18px);
  opacity: 0.16;
  pointer-events: none;
}

.apps-page .apps-cta-section .cta-band::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -120px;
  bottom: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.apps-page .apps-cta-section .cta-band > * {
  position: relative;
  z-index: 1;
}

.apps-page .apps-cta-section .cta-content {
  display: grid;
  gap: 14px;
  align-content: start;
  margin: 8px 0 8px 8px;
  padding: 30px 26px;
  border-radius: 28px;
  z-index: 2 !important;
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(180deg, rgb(245, 249, 255), rgb(236, 244, 255));
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(8, 24, 64, 0.24);
  color: #0f1a31;
}

.apps-page .apps-cta-section .cta-content::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 0;
  top: -4px;
  height: 100%;
  z-index: -1 !important;
  border-radius: 26px;
  opacity: 0.2;
  background: linear-gradient(90deg, #2f73ef, #ef3b5f);
}

.apps-page .apps-cta-section .cta-band-kicker {
  padding: 7px 13px;
  font-size: 0.78rem;
}

.apps-page .apps-cta-section .cta-content h2 {
  font-size: clamp(1.78rem, 2.8vw, 2.2rem);
  max-width: 18ch;
  line-height: 1.04;
  color: #0a2250;
}

.apps-page .apps-cta-section .cta-content p {
  max-width: 44ch;
  font-size: 1.03rem;
  color: #31456d;
}

.apps-page .apps-cta-section .cta-offer-highlight {
  gap: 5px;
  border-radius: 18px;
  padding: 14px 14px 12px;
}

.apps-page .apps-cta-section .cta-offer-bonus {
  padding: 6px 12px;
  font-size: 0.82rem;
}

.apps-page .apps-cta-section .cta-offer-bonus i {
  color: #c37400;
}

.apps-page .apps-cta-section .cta-price-now {
  font-size: clamp(1.75rem, 2.9vw, 2.4rem);
}

.apps-page .apps-cta-section .cta-price-old {
  font-size: 1.04rem;
}

.apps-page .apps-cta-section .cta-price-save {
  min-height: 28px;
  padding: 4px 10px;
  font-size: 0.82rem;
  box-shadow: 0 8px 16px rgba(214, 31, 63, 0.26);
}

.apps-page .apps-cta-section .cta-offer-note {
  line-height: 22px;
  font-size: 0.8rem;
}

.apps-page .apps-cta-section .cta-time-box {
  border: 1px solid rgba(19, 58, 129, 0.22);
  background: linear-gradient(180deg, #10306f, #153b84);
  padding: 10px 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.apps-page .apps-cta-section .cta-time-box strong {
  color: #ffffff;
  font-size: 1.36rem;
}

.apps-page .apps-cta-section .cta-time-box span {
  margin-top: 6px;
  font-size: 0.63rem;
  letter-spacing: 0.09em;
  color: rgba(233, 240, 255, 0.88);
}

.apps-page .apps-cta-section .cta-actions {
  margin-top: 4px;
  gap: 12px;
}

.apps-page .apps-cta-section .cta-band .btn-primary,
.apps-page .apps-cta-section .cta-band .btn-secondary {
  min-height: 48px;
}

.apps-page .apps-cta-section .cta-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: visible;
}

.apps-page .apps-cta-section .cta-visual::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  bottom: -130px;
  right: 50%;
  transform: translateX(48%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 245, 255, 0.24), rgba(236, 245, 255, 0));
}

.apps-page .apps-cta-section .cta-visual::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 64px;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 14, 40, 0.48), rgba(7, 14, 40, 0));
}

.apps-page .apps-cta-section .cta-person {
  position: relative;
  z-index: 1;
  width: min(600px, 118%);
  max-height: 535px;
  object-fit: contain;
  transform: translateY(18px);
  filter: drop-shadow(0 30px 42px rgba(7, 13, 35, 0.54));
}

@media (max-width: 1100px) {
  .apps-page .apps-cta-section .cta-band {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.85fr);
    padding: 14px;
  }

  .apps-page .apps-cta-section .cta-content {
    padding: 24px 20px;
  }
}

@media (max-width: 920px) {
  .apps-page .apps-cta-section .cta-band {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .apps-page .apps-cta-section .cta-content {
    margin: 0;
    padding: 22px 18px;
  }

  .apps-page .apps-cta-section .cta-visual {
    min-height: 340px;
    justify-content: center;
  }

  .apps-page .apps-cta-section .cta-person {
    width: min(470px, 90vw);
    transform: translateY(12px);
  }
}

@media (max-width: 640px) {
  .apps-page .apps-cta-section .cta-band-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .apps-page .apps-cta-section .cta-offer-highlight {
    padding: 12px 10px 10px;
  }

  .apps-page .apps-cta-section .cta-offer-deal {
    font-size: 0.82rem;
  }

  .apps-page .apps-cta-section .cta-offer-bonus {
    font-size: 0.74rem;
    padding: 5px 9px;
    gap: 6px;
  }

  .apps-page .apps-cta-section .cta-price-old {
    font-size: 0.92rem;
  }

  .apps-page .apps-cta-section .cta-price-save {
    min-height: 24px;
    font-size: 0.74rem;
    padding: 3px 8px;
  }

  .apps-page .apps-cta-section .cta-offer-note {
    font-size: 0.82rem;
  }

  .apps-page .apps-cta-section .cta-countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apps-page .apps-cta-section .cta-visual {
    min-height: 280px;
  }

  .apps-page .apps-cta-section .cta-person {
    width: min(390px, 95vw);
    transform: translateY(8px);
  }

  .apps-page .apps-cta-section .cta-content {
    padding: 18px 14px;
  }

  .apps-page .apps-cta-section .cta-actions .btn {
    width: 100%;
  }
}
