/* ── App shell: header + footer (shared) ── */

:root {
  --font-sans: 'Vazirmatn', sans-serif;
  --shell-content-width: 440px;
  --navy-deep: #060f1a;
  --orange: #FF6B00;
  --orange-bright: #FF8534;
  --orange-glow: rgba(255, 107, 0, 0.5);
  --cream: #E8E4D9;
  --cream-muted: rgba(232, 228, 217, 0.62);
  --star-mars: #FF9E5C;
  --star-dust: rgba(232, 228, 217, 0.45);
  --radius-lg: 22px;
  --radius-xl: 28px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--navy-deep);
  color: var(--cream);
  min-height: 100dvh;
  min-height: 100svh;
  overflow-x: hidden;
  line-height: 1.75;
}

.space-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 45% at 50% 105%, rgba(255, 90, 20, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 75% 55% at 50% -8%, rgba(255, 107, 0, 0.11) 0%, transparent 52%),
    linear-gradient(175deg, #0c1f35 0%, var(--navy-deep) 50%, #050c14 100%);
}

.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  border-radius: 50%;
}

.star--dust {
  background: var(--star-dust);
  opacity: var(--op, 0.3);
  animation: twinkleSlow var(--dur, 6s) ease-in-out infinite alternate;
}

.star--mars {
  background: var(--star-mars);
  opacity: 0.55;
}

.star--mars-twinkle {
  background: var(--star-mars);
  animation: marsTwinkle var(--dur, 1.8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

@keyframes marsTwinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.3);
    box-shadow: 0 0 0 transparent;
  }
  15%,
  85% {
    opacity: 0.05;
    transform: scale(0.5);
    box-shadow: 0 0 2px rgba(255, 107, 0, 0.1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    box-shadow:
      0 0 6px rgba(255, 158, 92, 0.95),
      0 0 14px rgba(255, 107, 0, 0.5);
  }
}

@keyframes twinkleSlow {
  from {
    opacity: calc(var(--op, 0.3) * 0.6);
  }
  to {
    opacity: calc(var(--op, 0.3) * 1.2);
  }
}

.app {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: safe center;
  padding:
    calc(1.25rem + var(--safe-top))
    calc(1rem + var(--safe-right))
    calc(5.75rem + var(--safe-bottom))
    calc(1rem + var(--safe-left));
}

/* Product pages: trust buttons live in document flow after SEO, not sticky. */
body[data-product-slug] .app {
  justify-content: flex-start;
  padding-bottom: calc(1.25rem + var(--safe-bottom));
}

html.mars-android-app #shell-header,
html.mars-android-app .site-header,
html.mars-android-app .site-footer {
  display: none !important;
}

#shell-header {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding:
    calc(0.85rem + var(--safe-top))
    calc(1rem + var(--safe-right))
    0
    calc(1rem + var(--safe-left));
}

.site-brand {
  position: relative;
  top: auto;
  right: auto;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--shell-content-width);
  gap: 0.75rem;
}

.site-brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.site-brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.2);
  flex-shrink: 0;
}

.site-brand-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.site-auth {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.site-auth--loading {
  min-width: 2.6rem;
  justify-content: center;
}

.site-auth-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  height: 2.15rem;
  padding: 0 0.35rem;
}

.site-auth-dots span {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: rgba(232, 228, 217, 0.55);
  animation: siteAuthDot 1s ease-in-out infinite;
}

.site-auth-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.site-auth-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes siteAuthDot {
  0%,
  80%,
  100% {
    opacity: 0.28;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.site-auth-login,
.site-auth-logout,
.site-auth-profile {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-direction: row;
  border: 1px solid rgba(255, 107, 0, 0.38);
  background: rgba(255, 107, 0, 0.14);
  color: var(--orange-bright);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
  max-width: 11rem;
}

.site-auth-login:hover,
.site-auth-logout:hover,
.site-auth-profile:hover {
  background: rgba(255, 107, 0, 0.22);
  border-color: rgba(255, 107, 0, 0.55);
  transform: translateY(-1px);
}

.site-auth-profile .site-auth-btn-label {
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-auth-logout {
  border-color: rgba(232, 228, 217, 0.18);
  background: rgba(11, 29, 51, 0.72);
  color: var(--cream);
}

.site-auth-logout:hover {
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.14);
  color: var(--orange-bright);
}

.site-auth-btn-icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.site-auth-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 380px) {
  .site-auth-btn-label {
    font-size: 0.72rem;
  }
}

.mars-station-toast {
  position: fixed;
  bottom: max(1.25rem, var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 2147483600;
  max-width: min(92vw, 22rem);
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: rgba(8, 18, 32, 0.96);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.mars-station-toast[hidden] {
  display: none !important;
}

.mars-station-toast--ok {
  border-color: rgba(255, 107, 0, 0.45);
}

.mars-station-toast--err {
  border-color: rgba(255, 120, 120, 0.45);
  color: #ffd4d4;
}

.footer-legal-link {
  pointer-events: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cream-muted);
  text-decoration: none;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  opacity: 0.92;
  transition: color 0.15s ease, background 0.15s ease;
}

.footer-legal-link:hover {
  color: var(--cream);
  background: rgba(232, 228, 217, 0.08);
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding: 0.55rem 1rem calc(0.55rem + var(--safe-bottom));
  background: linear-gradient(
    to top,
    rgba(6, 15, 26, 0.94) 0%,
    rgba(6, 15, 26, 0.72) 65%,
    transparent 100%
  );
  pointer-events: none;
}

body[data-product-slug] .site-footer {
  position: static;
  bottom: auto;
  left: auto;
  right: auto;
  z-index: 2;
  width: 100%;
  margin: 0.35rem 0 0;
  padding: 0.85rem 0 calc(1.5rem + var(--safe-bottom));
  background: transparent;
  pointer-events: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: stretch;
  align-items: stretch;
  gap: 0.65rem;
}

body[data-product-slug] .site-footer .trust-trigger {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  min-height: 3.35rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 0.75rem;
  border-radius: 14px;
  opacity: 1;
  background: rgba(11, 29, 51, 0.72);
  border: 1px solid rgba(232, 228, 217, 0.14);
}

body[data-product-slug] .site-footer .trust-trigger:hover {
  transform: translateY(-1px);
}

body[data-product-slug] .site-footer .trust-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

body[data-product-slug] .site-footer .trust-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
}

/* Checkout: pin trust buttons to the viewport bottom, not under pay CTA */
body[data-product-slug]:has(.step-container.in-flow) .site-footer,
body[data-product-slug] .step-container.in-flow .site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  width: 100%;
  max-width: none;
  margin: 0;
  padding:
    0.7rem
    max(1rem, calc((100% - 400px) / 2))
    calc(0.7rem + var(--safe-bottom));
  background: linear-gradient(
    to top,
    rgba(6, 15, 26, 0.97) 0%,
    rgba(6, 15, 26, 0.82) 72%,
    transparent 100%
  );
  box-sizing: border-box;
}

body[data-product-slug]:has(.step-container.in-flow) .site-footer .trust-trigger,
body[data-product-slug] .step-container.in-flow .site-footer .trust-trigger {
  min-height: 2.75rem;
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
}

body[data-product-slug]:has(.step-container.in-flow) .site-footer .trust-label,
body[data-product-slug] .step-container.in-flow .site-footer .trust-label {
  font-size: 0.8rem;
}

body[data-product-slug]:has(.step-container.in-flow):not(.is-session-step) .app {
  padding-bottom: calc(5.75rem + var(--safe-bottom));
}

.trust-trigger {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  min-width: 52px;
  padding: 0.42rem 0.55rem 0.38rem;
  border-radius: 12px;
  line-height: 1;
  opacity: 0.92;
  pointer-events: auto;
  border: 1px solid rgba(232, 228, 217, 0.1);
  background: rgba(11, 29, 51, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.trust-trigger:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.trust-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.trust-trigger--enamad {
  color: #5ec8ff;
}

.trust-trigger--enamad:hover {
  border-color: rgba(94, 200, 255, 0.35);
  box-shadow: 0 4px 16px rgba(46, 140, 220, 0.18);
}

.trust-trigger--enamad .trust-label {
  color: rgba(180, 225, 255, 0.92);
}

.trust-trigger--zibal {
  color: #7eb8ff;
}

.trust-trigger--zibal:hover {
  border-color: rgba(120, 190, 255, 0.38);
  box-shadow: 0 4px 16px rgba(37, 99, 168, 0.22);
}

.trust-trigger--zibal .trust-label {
  color: rgba(190, 220, 255, 0.92);
}

.trust-trigger--support {
  color: #ffb36c;
}

.trust-trigger--support:hover {
  border-color: rgba(255, 179, 108, 0.38);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.22);
}

.trust-trigger--support .trust-label {
  color: rgba(255, 210, 170, 0.94);
}

/* ── Trust modal ── */

body.trust-modal-open {
  overflow: hidden;
}

.trust-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.trust-modal[hidden] {
  display: none;
}

.trust-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 18, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.trust-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  padding: 1.15rem 1.1rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(232, 228, 217, 0.12);
  background: rgba(11, 29, 51, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.trust-modal-close {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(232, 228, 217, 0.08);
  color: var(--cream, #e8e4d9);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.trust-modal-title {
  margin: 0 0 0.85rem;
  padding-left: 2rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cream, #e8e4d9);
  text-align: center;
}

.trust-modal-body {
  position: relative;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.trust-modal-skeleton {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background: linear-gradient(
    110deg,
    rgba(232, 228, 217, 0.06) 0%,
    rgba(232, 228, 217, 0.06) 35%,
    rgba(232, 228, 217, 0.16) 50%,
    rgba(232, 228, 217, 0.06) 65%,
    rgba(232, 228, 217, 0.06) 100%
  );
  background-size: 220% 100%;
  animation: trust-skeleton-shimmer 1.35s ease-in-out infinite;
}

.trust-modal-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.trust-modal-content:not(.is-loaded):not(.is-error) {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.trust-modal-content.is-loaded,
.trust-modal-content.is-error {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.trust-modal-content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.trust-modal-vpn-hint {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  color: rgba(255, 180, 120, 0.92);
}

.trust-modal-external {
  display: block;
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(180, 225, 255, 0.88);
  text-decoration: none;
}

.trust-modal-external:hover {
  text-decoration: underline;
}

.support-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.support-contact-text {
  margin: 0;
  color: var(--cream-muted, rgba(232, 228, 217, 0.62));
  font-size: 0.86rem;
  line-height: 1.8;
}

.support-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 179, 108, 0.24);
  background: rgba(255, 107, 0, 0.12);
  color: var(--orange-bright, #ff8534);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.support-contact-link:hover {
  border-color: rgba(255, 179, 108, 0.42);
  background: rgba(255, 107, 0, 0.18);
}

@keyframes trust-skeleton-shimmer {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-modal-skeleton {
    animation: none;
    background: rgba(232, 228, 217, 0.1);
  }
}

/* ── SEO panels (home + product pages) ── */

.seo-breadcrumb {
  font-size: 0.72rem;
  color: var(--cream-muted, rgba(232, 228, 217, 0.62));
}

.seo-breadcrumb--header {
  width: 100%;
  max-width: var(--shell-content-width);
  margin: 0.45rem 0 1.1rem;
}

.seo-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.seo-breadcrumb-list li {
  display: inline-flex;
  align-items: center;
}

.seo-breadcrumb-list li:not(:last-child)::after {
  content: '›';
  margin-right: 0.5rem;
  opacity: 0.55;
}

.seo-breadcrumb-list a {
  color: inherit;
  text-decoration: none;
}

.seo-breadcrumb-list a:hover {
  color: var(--orange-bright, #FF8534);
}

.seo-panel {
  position: relative;
  width: 100%;
  max-width: 42rem;
  margin: 1.15rem auto 0.25rem;
  padding: 1.25rem 1.1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(232, 228, 217, 0.12);
  background: #0b1d33;
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.85);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.seo-panel--home {
  margin-top: 1.75rem;
  margin-bottom: 5.5rem;
}

.seo-panel--home-reviews {
  margin-bottom: 0.85rem;
}

.home-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.home-review-item {
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(120, 136, 158, 0.14);
}

.home-review-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem 0.55rem;
  margin-bottom: 0.3rem;
}

.home-review-product {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-bright, #FF8534);
  text-decoration: none;
}

.home-review-product:hover {
  text-decoration: underline;
}

.home-review-stars {
  display: inline-flex;
  gap: 0.04rem;
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  color: rgba(148, 163, 184, 0.35);
  line-height: 1;
  padding: 0.12rem 0.3rem;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.22);
}

.home-review-star.is-on {
  color: #ffb347;
}

.home-review-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--cream, #E8E4D9);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.home-review-date {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.7rem;
  color: var(--cream-muted, rgba(232, 228, 217, 0.55));
}

.home-review-reply {
  margin-top: 0.45rem;
  padding: 0.5rem 0.6rem 0.45rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 133, 52, 0.2);
  background: rgba(255, 107, 0, 0.08);
}

.home-review-reply-label {
  margin: 0 0 0.22rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange-bright, #ff8534);
  line-height: 1.2;
}

.home-review-reply-text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(232, 228, 217, 0.85);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.home-review-reply-date {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.66rem;
  color: var(--cream-muted, rgba(232, 228, 217, 0.48));
}

.step-container .seo-panel {
  max-width: none;
  margin-bottom: 0.5rem;
  background: #0b1d33;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.step-container .product-reviews-section {
  background: #0b1d33;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(232, 228, 217, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.85);
}

.step-container.in-flow .seo-panel {
  display: none;
}

.step-container.in-flow #product-reviews-mount,
.step-container.in-flow .product-reviews-section {
  display: none !important;
}

.seo-panel-title {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--cream, #E8E4D9);
}

.seo-panel-title::before {
  content: '';
  display: inline-block;
  width: 0.32rem;
  height: 1.02rem;
  margin-left: 0.5rem;
  vertical-align: -0.16rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-bright, #FF8534), var(--orange, #FF6B00));
}

/* ── Collapsible SEO panel (pure CSS toggle) ── */

.seo-collapse-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.seo-collapse {
  position: relative;
  overflow: hidden;
  max-height: 4.6rem;
  transition: max-height 0.35s ease;
}

.seo-collapse-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 3.2rem;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(11, 29, 51, 0) 0%,
    rgba(11, 29, 51, 0.85) 55%,
    #0b1d33 100%
  );
  transition: opacity 0.25s ease;
}

.seo-collapse-inner > *:first-child {
  margin-top: 0;
}

.seo-collapse-toggle:checked ~ .seo-collapse {
  max-height: 220rem;
}

.seo-collapse-toggle:checked ~ .seo-collapse .seo-collapse-fade {
  opacity: 0;
}

.seo-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 0, 0.32);
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange-bright, #FF8534);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.seo-more-btn:hover {
  background: rgba(255, 107, 0, 0.16);
  border-color: rgba(255, 107, 0, 0.5);
}

.seo-more-icon {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.3s ease;
}

.seo-more-label--less {
  display: none;
}

.seo-collapse-toggle:checked ~ .seo-more-btn .seo-more-label--more {
  display: none;
}

.seo-collapse-toggle:checked ~ .seo-more-btn .seo-more-label--less {
  display: inline;
}

.seo-collapse-toggle:checked ~ .seo-more-btn .seo-more-icon {
  transform: rotate(180deg);
}

.seo-intro,
.seo-price {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--cream-muted, rgba(232, 228, 217, 0.72));
  margin-bottom: 0.85rem;
}

.seo-benefits {
  margin: 0 1.1rem 1rem 0;
  padding: 0;
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--cream-muted, rgba(232, 228, 217, 0.72));
}

.seo-benefits li {
  margin-bottom: 0.25rem;
}

.seo-faq h3,
.seo-related h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 1rem 0 0.55rem;
  color: var(--cream, #E8E4D9);
}

.seo-faq-item {
  border-top: 1px solid rgba(232, 228, 217, 0.08);
  padding: 0.55rem 0;
}

.seo-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cream, #E8E4D9);
  list-style: none;
  user-select: none;
}

.seo-faq-item summary:hover .seo-faq-toggle {
  background: rgba(255, 107, 0, 0.18);
  border-color: rgba(255, 107, 0, 0.5);
}

.seo-faq-question {
  flex: 1;
  line-height: 1.65;
}

.seo-faq-toggle {
  flex-shrink: 0;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 9px;
  border: 1px solid rgba(255, 107, 0, 0.32);
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange-bright, #FF8534);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.seo-faq-toggle::before {
  content: '+';
}

.seo-faq-item[open] .seo-faq-toggle::before {
  content: '−';
}

.seo-faq-item summary::-webkit-details-marker {
  display: none;
}

.seo-faq-item p {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--cream-muted, rgba(232, 228, 217, 0.68));
}

.seo-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
}

.seo-related a {
  font-size: 0.84rem;
  color: var(--orange-bright, #FF8534);
  text-decoration: none;
}

.seo-related a:hover {
  text-decoration: underline;
}

.seo-legal-note {
  margin: 0.75rem 0 0.85rem;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(232, 228, 217, 0.72);
}

.seo-faq .seo-legal-note {
  padding-top: 0;
}

.seo-legal-note a {
  color: var(--orange, #ff6b00);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-weight: 600;
}

.seo-legal-note a:hover {
  color: var(--orange-bright, #ff8534);
}

.seo-reviews {
  margin: 1rem 0 0.75rem;
}

.seo-reviews h3 {
  font-size: 0.95rem;
  margin: 0 0 0.45rem;
}

.seo-review-summary {
  margin: 0 0 0.55rem;
  font-size: 0.86rem;
  color: var(--cream-muted, rgba(232, 228, 217, 0.62));
}

.seo-review-summary-link {
  color: var(--orange-bright, #FF8534);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 133, 52, 0.35);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.seo-review-summary-link:hover {
  color: #ff9a52;
  border-bottom-color: rgba(255, 154, 82, 0.7);
}

.seo-review-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.seo-review-list li {
  font-size: 0.86rem;
  line-height: 1.7;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(232, 228, 217, 0.1);
  background: rgba(6, 15, 26, 0.35);
}

.seo-review-stars {
  color: var(--orange-bright, #FF8534);
  letter-spacing: 0.05em;
  margin-left: 0.35rem;
}

.product-availability-notice {
  margin: 0.65rem 0 0;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--cream, #E8E4D9);
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.28);
}

.product-shop-note {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(232, 228, 217, 0.78);
}

.hero-product-icon,
.product-icon,
.site-brand-logo {
  aspect-ratio: 1 / 1;
  height: auto;
}

#btn-buy-gpt:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── Blog ── */

.blog-shell {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.blog-shell--post {
  max-width: 44rem;
}

.blog-h1 {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.45;
  color: var(--cream, #E8E4D9);
  margin: 0 0 0.75rem;
}

.blog-lead,
.blog-meta {
  color: var(--cream-muted, rgba(232, 228, 217, 0.62));
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.blog-meta time,
.blog-card-meta time {
  font-variant-numeric: tabular-nums;
}

.blog-index-header,
.blog-post-header {
  margin-bottom: 1.25rem;
}

.blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-card {
  padding: 1.15rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(232, 228, 217, 0.12);
  background: rgba(11, 29, 51, 0.5);
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  line-height: 1.55;
}

.blog-card-title a {
  color: var(--cream, #E8E4D9);
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--orange-bright, #FF8534);
}

.blog-card-meta {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  color: var(--cream-muted, rgba(232, 228, 217, 0.62));
}

.blog-card-excerpt {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(232, 228, 217, 0.82);
}

.blog-card-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange-bright, #FF8534);
  text-decoration: none;
}

.blog-card-more:hover {
  text-decoration: underline;
}

.blog-money-nav,
.blog-related {
  margin-top: 1.75rem;
  padding: 1.1rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(232, 228, 217, 0.12);
  background: rgba(11, 29, 51, 0.45);
}

.blog-aside-title {
  font-size: 0.95rem;
  margin: 0 0 0.65rem;
  color: var(--cream, #E8E4D9);
}

.blog-money-nav ul,
.blog-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.blog-money-nav a,
.blog-related a {
  color: var(--orange-bright, #FF8534);
  text-decoration: none;
  font-size: 0.9rem;
}

.blog-money-nav a:hover,
.blog-related a:hover {
  text-decoration: underline;
}

.blog-related-block + .blog-related-block {
  margin-top: 1.1rem;
}

.blog-back {
  margin: 1.1rem 0 0;
  font-size: 0.85rem;
  color: var(--cream-muted, rgba(232, 228, 217, 0.62));
}

.blog-back a {
  color: inherit;
}

.blog-prose {
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(232, 228, 217, 0.92);
}

.blog-prose > *:first-child {
  margin-top: 0;
}

.blog-prose h2 {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 1.75rem 0 0.7rem;
  color: var(--cream, #E8E4D9);
}

.blog-prose p,
.blog-prose ul,
.blog-prose ol {
  margin: 0 0 1rem;
}

.blog-prose ul,
.blog-prose ol {
  padding-right: 1.2rem;
}

.blog-prose li {
  margin-bottom: 0.35rem;
}

.blog-prose a {
  color: var(--orange-bright, #FF8534);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.blog-prose code {
  direction: ltr;
  unicode-bidi: isolate;
  font-size: 0.86em;
  padding: 0.1em 0.35em;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.blog-trust-box {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(72, 187, 120, 0.45);
  background: rgba(72, 187, 120, 0.12);
}

.blog-trust-box-title {
  margin: 0 0 0.45rem;
  font-weight: 700;
  color: #6ee7a0;
  font-size: 0.95rem;
}

.blog-trust-box p:last-child {
  margin: 0;
}

.blog-trust-box strong {
  color: var(--cream, #e8e4d9);
}

.blog-video-embed {
  margin: 1.35rem 0 1.6rem;
  padding: 0.85rem 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(232, 228, 217, 0.12);
  background: rgba(8, 14, 24, 0.55);
}

.blog-video-embed-caption {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream, #e8e4d9);
}

.blog-video-embed .h_iframe-aparat_embed_frame {
  position: relative;
  width: 100%;
}

.blog-video-embed .h_iframe-aparat_embed_frame .ratio,
.blog-video-embed .h_iframe-aparat_embed_frame > span {
  display: block;
  width: 100%;
  padding-top: 57%;
  height: 0;
}

.blog-video-embed .h_iframe-aparat_embed_frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-cta {
  margin: 1.5rem 0 0.5rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 0, 0.35);
  background: rgba(255, 107, 0, 0.1);
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 12px;
  background: var(--orange-bright, #FF8534);
  color: #0b1d33 !important;
  text-decoration: none !important;
  font-weight: 700;
  line-height: 1.3;
}

.blog-cta-btn:hover {
  filter: brightness(1.06);
}

.blog-author {
  margin: 1.75rem 0 0;
  padding: 1.1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(232, 228, 217, 0.14);
  background: rgba(11, 29, 51, 0.55);
}

.blog-author-label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--cream-muted, rgba(232, 228, 217, 0.55));
}

.blog-author-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream, #E8E4D9);
}

.blog-author-role {
  margin: 0.2rem 0 0.55rem;
  font-size: 0.86rem;
  color: var(--orange-bright, #FF8534);
}

.blog-author-bio {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(232, 228, 217, 0.82);
}

.blog-author-trust {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.7;
}

.blog-author-trust a {
  color: var(--orange-bright, #FF8534);
  text-decoration: none;
}

.blog-author-trust a:hover {
  text-decoration: underline;
}

.blog-faq-item {
  margin: 0 0 0.55rem;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(232, 228, 217, 0.1);
  background: rgba(6, 15, 26, 0.35);
}

.blog-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.blog-faq-item summary::-webkit-details-marker {
  display: none;
}

.blog-faq-item p {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  color: rgba(232, 228, 217, 0.85);
}

.blog-table-wrap {
  overflow-x: auto;
  margin: 0 0 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(232, 228, 217, 0.12);
}

.blog-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  min-width: 28rem;
}

.blog-table th,
.blog-table td {
  padding: 0.65rem 0.75rem;
  text-align: right;
  border-bottom: 1px solid rgba(232, 228, 217, 0.1);
  vertical-align: top;
}

.blog-table th {
  background: rgba(255, 107, 0, 0.12);
  color: var(--cream, #E8E4D9);
  font-weight: 700;
}

.blog-table tr:last-child td {
  border-bottom: 0;
}

@media (min-width: 720px) {
  .app:has(.blog-shell) {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: calc(1.5rem + var(--safe-top, 0px));
  }
}

