/* Audiowide — FL STUDIO wordmark & hero title only (self-hosted, CSP-safe) */
@font-face {
  font-family: "Audiowide";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/audiowide-latin.fa3af39df234.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font-brand: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  /* Fusion 360 official palette — dark UI + orange lockup */
  --bg: #0a0a0a;
  --bg-mid: #111111;
  --surface: #161616;
  --surface-2: #1e1e1e;
  --text: #f5f5f5;
  --muted: #c4c4c4;
  --accent: #ff6b00;
  --accent-2: #ff9548;
  --accent-3: #933c00;
  --aspire-violet: #ff9548;
  --aspire-teal: #ffb347;
  --ok: #34d399;
  --ok-dark: #0a1612;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  --neo-inset: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  --neo-raised: 8px 8px 22px rgba(0, 0, 0, 0.38), -6px -6px 16px rgba(255, 255, 255, 0.03);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --scrollbar-track: var(--surface);
  --scrollbar-thumb: var(--accent);
  --scrollbar-thumb-hover: var(--accent-2);
}

/* Custom scrollbars — theme track + orange thumb (standard size) */
html,
body {
  scrollbar-width: auto;
  scrollbar-color: var(--scrollbar-thumb-hover) var(--scrollbar-track);
}

html::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}

html::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-left: 1px solid var(--border);
}

html::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--scrollbar-thumb-hover), var(--scrollbar-thumb));
  border-radius: 8px;
  border: 3px solid var(--scrollbar-track);
}

html::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--scrollbar-thumb-hover), var(--accent-3));
}

html::-webkit-scrollbar-corner,
*::-webkit-scrollbar-corner {
  background: var(--scrollbar-track);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(168deg, var(--bg) 0%, var(--bg-mid) 48%, var(--bg) 100%),
    radial-gradient(circle at 8% 14%, rgba(147, 60, 0, 0.22), transparent 38%),
    radial-gradient(circle at 90% 6%, rgba(255, 107, 0, 0.18), transparent 42%),
    radial-gradient(ellipse 80% 50% at 50% 108%, rgba(147, 60, 0, 0.1), transparent 52%),
    var(--bg);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
}

body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: max(16px, env(safe-area-inset-left, 0px)) max(16px, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

main {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: max(16px, env(safe-area-inset-left, 0px)) max(16px, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main > .container,
main > .section.container,
main > section.container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  position: sticky;
  top: 16px;
  z-index: 10;
  margin-top: 16px;
  background:
    linear-gradient(120deg, rgba(13, 13, 18, 0.92), rgba(7, 7, 9, 0.78)),
    linear-gradient(145deg, var(--glass-strong), var(--glass));
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 28px rgba(0, 0, 0, 0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  --brand-logo-size: 56px;
  min-width: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-actions .hero-buy-btn {
  min-width: 128px;
  padding: 14px 28px;
}

/* Header CTA: no music notes; keep generic btn shimmer off ::before only */
.header-actions .hero-buy-btn__note {
  display: none !important;
}

.header-actions .hero-buy-btn::before {
  content: none !important;
  display: none !important;
  animation: none !important;
  background: none !important;
  filter: none !important;
  opacity: 0 !important;
  inset: auto !important;
  transform: none !important;
}

.header-actions .hero-buy-btn:hover::before {
  content: none !important;
  display: none !important;
  animation: none !important;
  opacity: 0 !important;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  line-height: 0;
  color: #fff;
  cursor: default;
  pointer-events: none;
}

.platform-icon {
  color: #fff;
  display: block;
  flex-shrink: 0;
  overflow: visible;
}

.platform-icon--mac {
  object-fit: contain;
  /* Black silhouette asset → white on dark UI */
  filter: brightness(0) invert(1);
  box-sizing: content-box;
  padding: 3px;
}

.header-action .platform-icon {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
}

a.hero-buy-btn {
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
}

.brand-logo {
  width: var(--brand-logo-size);
  height: var(--brand-logo-size);
  object-fit: contain;
  transition: transform 0.22s ease, filter 0.22s ease;
  filter:
    drop-shadow(0 0 10px rgba(255, 107, 0, 0.45))
    drop-shadow(0 0 18px rgba(147, 60, 0, 0.28));
}

.brand-logo--wordmark {
  --brand-logo-size: 58px;
  width: auto;
  height: 58px;
  max-width: min(62vw, 335px);
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: none;
}

.brand:hover .brand-logo--wordmark {
  transform: none;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.brand:hover .brand-logo:not(.brand-logo--wordmark) {
  transform: scale(1.12);
  filter:
    drop-shadow(0 0 12px rgba(255, 107, 0, 0.58))
    drop-shadow(0 0 24px rgba(147, 60, 0, 0.44));
}

.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
  transform: translateY(1px);
}

.brand-wordmark strong {
  font-family: var(--font-brand);
  font-size: calc(var(--brand-logo-size) * 0.5);
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #fff;
}

.cart-btn {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: var(--text);
  border-radius: 14px;
  width: 56px;
  height: 56px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  box-shadow: var(--neo-inset), var(--neo-raised);
}

.cart-btn:hover {
  border-color: rgba(255, 149, 72, 0.5);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.14),
    0 0 22px rgba(255, 107, 0, 0.24);
}

.cart-btn:hover .cart-icon {
  animation: cart-wiggle 0.46s ease-in-out;
}

.cart-btn span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  line-height: 1;
  padding: 0;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #111;
  border-radius: 999px;
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(255, 107, 0, 0.5);
}

.cart-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
  opacity: 0.95;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  margin-top: 20px;
  padding: 24px 0 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-inner {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 2.5rem auto 0;
  padding: 0;
}

.hero-product-image {
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 16px 34px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 24px rgba(255, 107, 0, 0.2));
}

.hero-fl-screenshot {
  display: block;
  width: min(100%, 720px);
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  border: 1px solid var(--border);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5));
  background: var(--surface);
}

.hero-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 25px;
  color: var(--accent-2);
  letter-spacing: 0.14em;
  padding-inline-end: 0.14em;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 600;
  text-transform: uppercase;
}

.hero-copy h2 {
  font-family: var(--font-brand);
  font-weight: 400;
  width: max-content;
  max-width: 100%;
  margin: 5px auto 10px;
  padding: 0;
  letter-spacing: normal;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: center;
  text-shadow:
    0 0 12px rgba(255, 107, 0, 0.28),
    0 0 28px rgba(147, 60, 0, 0.2);
}

@media (min-width: 641px) {
  .hero-copy h2.hero-title--nowrap-md {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }
}

h1 {
  margin: 6px 0 10px;
  max-width: 760px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-shadow:
    0 0 12px rgba(255, 107, 0, 0.28),
    0 0 28px rgba(147, 60, 0, 0.2);
}

h1.brand-wordmark {
  margin: 0;
  max-width: none;
  font: inherit;
  color: inherit;
  text-shadow: none;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-subtitle {
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.45;
  max-width: 640px;
  overflow-wrap: anywhere;
}

.hero-actions {
  margin-top: 30px;
  margin-bottom: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.hero-actions .hero-buy-btn {
  padding-inline-end: calc(26px + 0.14em);
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 16px 0 0;
  font-size: 16px;
  color: #d3d8ed;
}

.hero-trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.checkmark-icon {
  flex-shrink: 0;
  color: var(--ok);
}

.hero-fl-video {
  object-fit: cover;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 700;
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -140% -35%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 36%,
    rgba(255, 255, 255, 0.34) 50%,
    rgba(255, 255, 255, 0) 64%
  );
  transform: translateX(-120%) rotate(8deg);
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(130deg, var(--accent), var(--accent-2), var(--accent-3));
  color: #111;
  box-shadow:
    0 8px 20px rgba(255, 107, 0, 0.34),
    0 0 26px rgba(147, 60, 0, 0.22);
}

.btn-primary:hover {
  filter: brightness(1.1);
}

a.hero-buy-btn {
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-buy-btn {
  min-width: 210px;
  margin: 0;
  max-width: none;
  overflow-wrap: normal;
  word-break: normal;
  text-shadow: none;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 14px;
  border: 1px solid rgba(255, 196, 123, 0.68);
  box-shadow:
    0 10px 28px rgba(255, 107, 0, 0.28),
    inset 0 1px 0 rgba(255, 241, 219, 0.5);
}

.hero-buy-btn::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(240, 154, 72, 0.35) 0%,
    rgba(255, 107, 0, 0.18) 35%,
    rgba(147, 60, 0, 0) 72%
  );
  filter: blur(14px);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.hero-buy-btn:hover::before {
  opacity: 0.72;
  animation: buy-btn-glow 5.4s ease-in-out infinite;
}

.hero-buy-btn::after {
  animation: buy-btn-shimmer 5.6s ease-in-out infinite;
}

.hero-buy-btn:hover {
  filter: brightness(1.12) saturate(1.06);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    5px 5px 14px rgba(0, 0, 0, 0.32),
    -4px -4px 12px rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  border-color: rgba(255, 107, 0, 0.35);
}

.section {
  padding: 48px 0 72px;
}

.section-head h2 {
  margin: 0;
  font-size: 28px;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.product-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.card {
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, var(--glass-strong), var(--glass)),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border-radius: 16px;
  padding: clamp(1.75rem, 4.5vw, 2.5rem);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 149, 72, 0.42);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.52),
    0 0 24px rgba(255, 107, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.product-badge {
  display: inline-block;
  font-size: 14px;
  color: #111;
  background: linear-gradient(130deg, color-mix(in srgb, var(--ok) 82%, #fff), var(--ok));
  border-radius: 8px;
  padding: 5px 8px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-title {
  margin: 0 0 6px;
  font-size: 20px;
}

.product-text {
  margin: 0;
  color: var(--muted);
  min-height: 44px;
}

.product-foot {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 24px;
  font-weight: 800;
  text-shadow: 0 0 16px rgba(255, 107, 0, 0.3);
}

.benefits {
  margin-top: 20px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.legal-doc h2 {
  margin: 20px 0 8px;
  font-size: 20px;
  color: var(--text);
}

.legal-doc ul,
.legal-doc ol {
  margin: 8px 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.legal-doc li + li {
  margin-top: 6px;
}

.legal-doc a:not(.btn) {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-doc a:not(.btn):hover {
  color: var(--accent-2);
}

.legal-doc .hero-buy-btn {
  color: #111;
  text-decoration: none;
}

.oplata-page .reviews-page-back {
  text-align: center;
}

.oplata-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.oplata-page .payment-badges {
  margin-top: 16px;
  margin-bottom: 4px;
  justify-content: flex-start;
}

.faq-list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  padding: 10px 14px;
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.3);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin: 8px 0 2px;
  color: var(--muted);
}

.cart-panel {
  position: fixed;
  right: 16px;
  top: 16px;
  width: min(420px, calc(100% - 32px));
  height: calc(100% - 32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, var(--glass-strong), var(--glass)),
    linear-gradient(165deg, var(--surface-2), var(--surface));
  border-radius: 16px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  transform: translateX(120%);
  transition: transform 0.24s ease;
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    22px 22px 45px rgba(0, 0, 0, 0.5),
    -10px -10px 30px rgba(255, 255, 255, 0.03);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-panel-head,
.cart-panel-footer {
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.cart-panel-footer {
  border-top: 1px solid var(--border);
  border-bottom: 0;
  margin-top: auto;
}

.cart-items {
  padding: 12px 14px;
  overflow-y: auto;
  display: grid;
  gap: 10px;
}

.cart-row {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 10px;
  display: grid;
  gap: 8px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 18px rgba(0, 0, 0, 0.35);
}

.cart-row-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-row small {
  color: var(--muted);
}

.qty-control {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.qty-control button,
.icon-btn {
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  color: var(--text);
  border-radius: 8px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    4px 4px 10px rgba(0, 0, 0, 0.3);
}

.qty-control button:hover,
.icon-btn:hover {
  border-color: rgba(255, 149, 72, 0.5);
  box-shadow:
    0 0 16px rgba(255, 107, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn-full {
  width: 100%;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.buy-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 24;
  background: rgba(0, 0, 0, 0.72);
}

.buy-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 25;
  width: min(440px, calc(100% - 32px));
  max-height: min(92dvh, calc(100vh - 24px));
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 24px 20px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background:
    linear-gradient(145deg, var(--glass-strong), var(--glass)),
    linear-gradient(165deg, var(--surface-2), var(--surface));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 28px 48px rgba(0, 0, 0, 0.56);
}

.buy-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.buy-modal-title {
  margin: 0;
  font-size: 26px;
}

.buy-modal-subtitle {
  margin: 10px 0 18px;
  color: var(--muted);
}

.buy-modal-form {
  display: grid;
  gap: 0;
  margin-top: 20px;
}

.buy-modal-product {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.buy-modal-product-img {
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
}

.buy-modal-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.buy-modal-product-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.buy-modal-product-desc {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.35;
}

.buy-modal-safe-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--ok);
  opacity: 0.9;
}

.buy-modal-safe-payment svg {
  flex-shrink: 0;
}

.buy-modal-label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}

.buy-modal-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 18px;
  line-height: 1.4;
  padding: 14px 16px;
  min-height: 50px;
}

.buy-modal-field-notes {
  margin: 8px 0 20px;
}

.buy-modal-hint {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.buy-modal-input:focus {
  outline: none;
  border-color: rgba(255, 149, 72, 0.7);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.25);
}

.buy-modal-input.is-invalid {
  border-color: rgba(255, 92, 92, 0.85);
  box-shadow: 0 0 0 2px rgba(255, 92, 92, 0.22);
}

.buy-modal-error {
  margin: 6px 0 0;
  color: #ff8d8d;
  font-size: 15px;
  line-height: 1.35;
}

.buy-modal-field-notes .buy-modal-error[hidden] {
  display: none;
}

.buy-modal-trust-list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.buy-modal-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
}

.buy-modal-trust-item::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--ok) 18%, transparent);
  color: var(--ok);
  font-size: 14px;
  font-weight: 800;
}

.buy-modal-consents {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 14px;
}

.buy-modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
  cursor: pointer;
}

.buy-modal-consent input[type="checkbox"] {
  margin-top: 2px;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--accent);
}

.buy-modal-consent--single {
  padding: 12px 13px;
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 107, 0, 0.1), rgba(147, 60, 0, 0.08)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.22);
}

.buy-modal-consent-text a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.buy-modal-consent-text a:hover {
  color: var(--accent-2);
}

button.buy-modal-submit {
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.buy-modal-submit {
  width: 100%;
  padding: 18px 29px 16px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 196, 123, 0.68);
  box-shadow:
    0 10px 28px rgba(255, 107, 0, 0.28),
    inset 0 1px 0 rgba(255, 241, 219, 0.5);
  cursor: pointer;
}

.buy-modal-form.is-submitting .buy-modal-submit {
  opacity: 0.92;
}

.buy-modal-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: saturate(0.75);
}

.payment-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.payment-badge-img {
  display: block;
  height: 26px;
  width: auto;
  max-width: 108px;
  object-fit: contain;
  object-position: center;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.payment-badge-img--sbp {
  height: 28px;
  max-width: 140px;
}

.payment-badge-img--yoomoney {
  height: 28px;
  max-width: 64px;
}

.payment-badge-img--alfa {
  height: 28px;
  max-width: 96px;
}

.payment-badge-img--card {
  height: 28px;
  width: auto;
  max-width: 44px;
  color: #fff;
}

.buy-modal-safe-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.buy-modal-success {
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--ok) 38%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--ok) 14%, transparent);
  color: color-mix(in srgb, var(--ok) 72%, var(--text));
  font-size: 15px;
  text-align: center;
}

.payment-result-modal {
  width: min(560px, calc(100% - 28px));
  display: grid;
  gap: 14px;
  padding: 30px 24px 24px;
  border-radius: 20px;
  border-color: rgba(255, 196, 123, 0.45);
  background:
    radial-gradient(circle at 8% 8%, rgba(240, 154, 72, 0.16), transparent 48%),
    radial-gradient(circle at 92% 12%, rgba(255, 107, 0, 0.16), transparent 46%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(165deg, var(--surface-2), var(--bg-mid));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 32px 70px rgba(0, 0, 0, 0.62),
    0 0 30px rgba(255, 107, 0, 0.18);
}

.payment-result-modal .buy-modal-title {
  margin-right: 36px;
  font-size: 30px;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 16px rgba(240, 154, 72, 0.35),
    0 0 38px rgba(147, 60, 0, 0.25);
}

.payment-result-celebration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.payment-result-firecracker {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.payment-result-firecracker[hidden] {
  display: none;
}

.payment-result-message {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  white-space: pre-line;
}

.payment-result-downloads {
  margin-top: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-result-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 108px;
  padding: 16px 12px;
  border-radius: 13px;
  border: 1px solid rgba(255, 196, 123, 0.35);
  background:
    linear-gradient(145deg, rgba(255, 107, 0, 0.14), rgba(147, 60, 0, 0.1)),
    rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.payment-result-download:hover {
  border-color: rgba(255, 196, 123, 0.6);
  background:
    linear-gradient(145deg, rgba(255, 107, 0, 0.22), rgba(147, 60, 0, 0.14)),
    rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.payment-result-download .platform-icon {
  width: 32px;
  height: 32px;
  color: #fff;
}

.payment-result-download .platform-icon--mac {
  width: 34px;
  height: 34px;
  padding: 4px;
}

@media (max-width: 640px) {
  .payment-result-modal {
    width: min(480px, calc(100% - 20px));
    padding: 24px 16px 16px;
  }

  .payment-result-modal .buy-modal-title {
    font-size: 24px;
  }

  .payment-result-downloads {
    grid-template-columns: 1fr;
  }
}

.footer {
  margin-top: 48px;
  padding: 40px 0 56px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.footer-emblem {
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: var(--muted);
  line-height: 0;
}

.footer-emblem__logo {
  display: block;
  width: auto;
  height: 104px;
  max-width: min(80vw, 600px);
  filter: brightness(0) invert(1);
  opacity: 0.98;
}

.footer-emblem__svg {
  display: block;
  margin-inline: auto;
  width: 56px;
  height: 64px;
}

.footer > p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.45;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.2rem 0.3rem;
}

.footer-links a:hover {
  color: var(--accent-2);
}

.footer-refund-note {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ok);
  text-align: center;
}

.footer-refund-note__inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer > p:not(.footer-refund-note) {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--muted);
}

.footer .payment-badges {
  margin: 0;
  gap: clamp(1rem, 3vw, 1.75rem);
  justify-content: center;
}

.bg-glow {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  filter: blur(98px);
  z-index: -1;
  animation: pulse-glow 9s ease-in-out infinite alternate;
}

.bg-glow-left {
  top: -80px;
  left: -80px;
  background: rgba(255, 107, 0, 0.34);
}

.bg-glow-right {
  right: -120px;
  bottom: -110px;
  background: rgba(147, 60, 0, 0.24);
}

@keyframes pulse-glow {
  from {
    transform: scale(0.95);
    opacity: 0.85;
  }
  to {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes buy-btn-hypnosis {
  0%, 100% {
    box-shadow:
      0 10px 28px rgba(255, 107, 0, 0.34),
      0 0 0 0 rgba(240, 154, 72, 0),
      inset 0 1px 0 rgba(255, 241, 219, 0.46);
    filter: brightness(1);
  }
  35% {
    box-shadow:
      0 13px 32px rgba(255, 107, 0, 0.44),
      0 0 0 9px rgba(240, 154, 72, 0.06),
      inset 0 1px 0 rgba(255, 241, 219, 0.62);
    filter: brightness(1.06);
  }
  65% {
    box-shadow:
      0 14px 34px rgba(255, 107, 0, 0.48),
      0 0 0 12px rgba(240, 154, 72, 0.08),
      inset 0 1px 0 rgba(255, 241, 219, 0.7);
    filter: brightness(1.08);
  }
}

@keyframes buy-btn-shimmer {
  0%, 20% {
    transform: translateX(-120%) rotate(8deg);
    opacity: 0;
  }
  38% {
    opacity: 1;
  }
  58% {
    transform: translateX(120%) rotate(8deg);
    opacity: 0;
  }
  100% {
    transform: translateX(120%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes buy-btn-glow {
  0%, 100% {
    opacity: 0.48;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.76;
    transform: scale(1.04);
  }
}

@keyframes cart-wiggle {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-8deg) scale(1.04); }
  50% { transform: rotate(8deg) scale(1.07); }
  75% { transform: rotate(-5deg) scale(1.04); }
  100% { transform: rotate(0deg) scale(1); }
}

@media (max-width: 980px) {
  .hero-product-image {
    width: min(82vw, 320px);
  }

  .hero-visual .hero-fl-screenshot,
  .hero-fl-screenshot,
  .hero-visual .hero-fl-video,
  .hero-fl-video {
    width: min(100%, 520px);
  }

  .product-grid,
  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

  .header {
    flex-wrap: nowrap;
    padding: 10px 12px;
    margin-top: max(8px, env(safe-area-inset-top, 0px));
    top: max(8px, env(safe-area-inset-top, 0px));
  }

  .header-actions {
    gap: 10px;
  }

  .header-action .platform-icon {
    width: 24px;
    height: 24px;
  }

  .brand {
    --brand-logo-size: 44px;
  }

  .brand-logo--wordmark {
    height: 49px;
    max-width: min(70vw, 282px);
  }

  .hero {
    padding-bottom: 96px;
  }

  .hero-actions .hero-buy-btn:not(.tech-pushable) {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 1rem;
    padding: 16px 24px;
    letter-spacing: 0.01em;
    text-transform: none;
  }

  .buy-modal-submit {
    font-size: 19px;
    letter-spacing: 0.12em;
    padding: 17px 21px 15px;
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 196, 123, 0.68);
    box-shadow:
      0 10px 28px rgba(255, 107, 0, 0.28),
      inset 0 1px 0 rgba(255, 241, 219, 0.5);
  }

  .buy-modal-label {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .buy-modal-input {
    font-size: 20px;
    line-height: 1.35;
    padding: 16px 16px;
    min-height: 54px;
    border-radius: 14px;
  }

  .buy-modal-field-notes {
    margin-bottom: 18px;
  }

  .buy-modal-hint {
    font-size: 15px;
    line-height: 1.45;
  }

  .buy-modal-close {
    width: 44px;
    height: 44px;
    top: 10px;
    right: 10px;
  }

  .hero-actions {
    width: 100%;
  }

  .brand-wordmark strong {
    font-size: 16px;
    letter-spacing: 0.06em;
  }

  .brand-wordmark em {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.features {
  padding: 5rem 0 2rem;
}

.highlights {
  padding: 4rem 0 2rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

@media (min-width: 981px) {
  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.highlight-card--star {
  position: relative;
  grid-column: auto;
  isolation: isolate;
  border: 1px solid color-mix(in srgb, var(--aspire-violet) 28%, rgba(255, 196, 123, 0.35));
  background:
    radial-gradient(ellipse 90% 80% at 0% 50%, rgba(155, 123, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 30%, rgba(255, 107, 0, 0.14), transparent 50%),
    linear-gradient(
      128deg,
      color-mix(in srgb, var(--aspire-violet) 20%, transparent) 0%,
      color-mix(in srgb, var(--aspire-teal) 10%, transparent) 38%,
      color-mix(in srgb, var(--accent-3) 14%, transparent) 100%
    ),
    linear-gradient(155deg, var(--surface-2), var(--bg-mid));
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 219, 0.14),
    var(--neo-inset),
    var(--neo-raised),
    0 0 40px color-mix(in srgb, var(--aspire-violet) 12%, transparent),
    0 12px 32px rgba(255, 107, 0, 0.1);
}

.highlight-card--star::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(
    180deg,
    var(--accent-2),
    var(--aspire-violet),
    var(--aspire-teal)
  );
  pointer-events: none;
  z-index: 1;
}

.highlight-card--star::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0) 62%
  );
  transform: translateX(-120%) skewX(-8deg);
  animation: buy-btn-shimmer 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.highlight-card--star:hover {
  border-color: color-mix(in srgb, var(--aspire-violet) 42%, rgba(255, 196, 123, 0.55));
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 219, 0.2),
    var(--neo-inset),
    var(--neo-raised),
    0 0 48px color-mix(in srgb, var(--aspire-violet) 18%, transparent),
    0 14px 36px rgba(255, 107, 0, 0.16);
}

.highlight-card--star .highlight-platforms--star {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  margin-top: auto;
  padding: 0 1.25rem 1.35rem;
  gap: 0.85rem 1.1rem;
  box-sizing: border-box;
}

.highlight-card--star .highlight-platform {
  flex: 0 1 auto;
  align-items: center;
  text-align: center;
  font-size: 0.9375rem;
  gap: 0.35rem;
  min-width: 0;
}

.highlight-card--star .highlight-platform .platform-icon,
.highlight-card--star .highlight-platform svg {
  width: min(48px, 10vw);
  height: min(48px, 10vw);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.highlight-card--star .highlight-body--star {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.highlight-card--star .highlight-star-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--aspire-teal) 75%, var(--text));
}

.highlight-card--star .highlight-title {
  font-family: inherit;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: normal;
  line-height: 1.25;
  margin: 0 0 0.65rem;
  text-align: center;
  text-shadow: 0 0 20px color-mix(in srgb, var(--aspire-violet) 22%, transparent);
}

.highlight-card--star .highlight-desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  max-width: 52ch;
}

.highlight-card--star .highlight-desc__pipeline {
  font-size: 1.0625rem;
  line-height: 1.65;
}

.highlight-card--star .highlight-desc__lead {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.45rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 149, 72, 0.35);
  border-radius: 10px;
}

@media (min-width: 981px) {
  .highlight-card--star {
    grid-column: 1 / -1;
  }

  .highlight-card--star .highlight-platform .platform-icon,
  .highlight-card--star .highlight-platform svg {
    width: 52px;
    height: 52px;
  }
}

.highlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background:
    linear-gradient(145deg, var(--glass-strong), var(--glass)),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--neo-inset), var(--neo-raised);
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.35);
}

.highlight-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: calc(220px + 3rem);
  padding: 1.5rem;
  background:
    radial-gradient(ellipse 80% 70% at 50% 30%, rgba(255, 107, 0, 0.18), transparent 65%),
    var(--surface);
}

.highlight-visual--product {
  --highlight-visual-min: calc(180px + 2rem);
  --highlight-visual-pad-y: 15px;
  min-height: var(--highlight-visual-min);
  padding: var(--highlight-visual-pad-y) 1.5rem;
  box-sizing: border-box;
  background: var(--surface);
}

.highlight-visual--license {
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(91, 225, 140, 0.12), transparent 70%),
    var(--surface);
}

.highlight-visual--star {
  background:
    radial-gradient(ellipse 75% 65% at 50% 35%, rgba(255, 107, 0, 0.14), transparent 68%),
    var(--surface);
}

.highlight-image {
  width: min(100%, 280px);
  max-height: 160px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

.highlight-image--wordmark {
  width: auto;
  height: calc(var(--highlight-visual-min, calc(220px + 3rem)) - 2 * var(--highlight-visual-pad-y, 15px));
  max-width: min(100%, 360px);
  max-height: none;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.98;
}

.highlight-platforms {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.highlight-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}

.highlight-platform .platform-icon {
  width: min(110px, 22vw);
  height: min(110px, 22vw);
}

.highlight-platform .platform-icon--mac {
  width: min(110px, 22vw);
  height: min(110px, 22vw);
  max-width: 100%;
  padding: 8px;
}

.highlight-body {
  flex: 1;
  padding: 1.5rem 1.75rem 1.75rem;
  text-align: center;
}

.highlight-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.highlight-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background:
    linear-gradient(145deg, var(--glass-strong), var(--glass)),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s ease;
  box-shadow: var(--neo-inset), var(--neo-raised);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.feature-desc {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.reviews-section {
  padding: 3.5rem 0 4rem;
}

.reviews-section__inner {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-2) 18%, var(--border));
  background:
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(255, 107, 0, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(201, 162, 39, 0.08), transparent 50%),
    linear-gradient(155deg, var(--surface-2), var(--surface));
  box-shadow:
    var(--neo-inset),
    var(--neo-raised),
    0 0 40px rgba(255, 107, 0, 0.06);
}

.reviews-section--page .reviews-section__inner {
  margin-top: 0.5rem;
  padding: clamp(2rem, 5vw, 2.75rem);
}

.reviews-header--page {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.reviews-header--page .reviews-header__intro {
  flex: 0 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-header--page .reviews-header__title {
  margin-bottom: 0;
  width: 100%;
  max-width: none;
}

.reviews-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem 2.5rem;
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.reviews-header__intro {
  flex: 1 1 100%;
  min-width: 0;
}

.reviews-header__title {
  margin: 0 auto 0.65rem;
  width: 100%;
  max-width: none;
  font-size: clamp(1.75rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  color: var(--text);
  text-shadow: none;
}

.reviews-header__lead {
  margin: 0 auto;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

@media (min-width: 641px) {
  .reviews-header__lead--nowrap-md {
    max-width: none;
    white-space: nowrap;
  }
}

.reviews-summary {
  flex: 0 0 auto;
  text-align: center;
  padding: 1.15rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(232, 200, 114, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(16, 16, 24, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 220, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.28);
}

.reviews-summary__score {
  margin: 0 0 0.35rem;
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(108deg, #fff9e8 0%, #f0d878 40%, #e8c872 70%, #fff6dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #e8c872;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .reviews-summary__score {
    color: transparent;
  }
}

.reviews-summary .star-rating {
  justify-content: center;
  margin-bottom: 0.5rem;
}

.reviews-summary__caption {
  margin: 0.35rem 0 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
}

.reviews-summary__label {
  color: #e8c872;
}

.reviews-summary__stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-top: 0.35rem;
}

.reviews-summary__count {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.star-rating {
  display: inline-flex;
  align-items: center;
}

.star-rating__group {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #e8c872;
}

.star-icon {
  display: block;
  flex-shrink: 0;
}

.star-rating--lg .star-icon {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 6px rgba(232, 200, 114, 0.45));
}

.star-rating--sm .star-icon {
  width: 14px;
  height: 14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.reviews-grid__item {
  min-width: 0;
}

.reviews-grid__item[hidden],
.reviews-grid__item.is-review-hidden {
  display: none !important;
}

.reviews-grid__item > .review-card {
  height: 100%;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(145deg, var(--glass-strong), var(--glass)),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--neo-inset), var(--neo-raised);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.65rem;
  right: 1rem;
  font-size: 2.75rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 107, 0, 0.14);
  pointer-events: none;
  user-select: none;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.38);
  box-shadow:
    var(--neo-inset),
    0 16px 36px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(255, 107, 0, 0.12);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.review-avatar--accent { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.review-avatar--blue { background: var(--accent-3); }
.review-avatar--green { background: var(--ok); color: var(--ok-dark); }
.review-avatar--violet { background: var(--aspire-violet); }
.review-avatar--teal { background: var(--aspire-teal); color: #062020; }
.review-avatar--rose { background: linear-gradient(135deg, var(--accent-3), var(--accent)); }

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.reviews-cta--actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.reviews-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.reviews-grid--block + .reviews-grid--block {
  margin-top: 0;
}

.reviews-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.reviews-more-btn:hover {
  border-color: rgba(255, 107, 0, 0.55);
  color: var(--accent-2);
  background: rgba(255, 107, 0, 0.08);
}

.reviews-cta--actions .hero-buy-btn {
  min-width: min(100%, 260px);
}

.reviews-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.reviews-all-btn:hover {
  border-color: rgba(255, 107, 0, 0.55);
  color: var(--accent-2);
  background: rgba(255, 107, 0, 0.08);
}

.reviews-page {
  padding: 3rem 0 5rem;
}

.reviews-page-back {
  margin: 0 0 1.5rem;
}

.reviews-page-back a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.reviews-page-back a:hover {
  text-decoration: underline;
}

.reviews-page-lead {
  text-align: center;
  color: var(--muted);
  margin: -1.5rem auto 2.5rem;
  max-width: 42ch;
  line-height: 1.5;
}

.reviews-grid--all {
  margin-bottom: 0.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.reviews-grid--all .review-card {
  padding: 1.15rem 1.2rem;
}

.reviews-grid--all .review-text p {
  font-size: 1.0625rem;
  line-height: 1.55;
}

.reviews-header__lead a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  .reviews-summary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-meta {
  min-width: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.25;
}

.review-rating {
  margin-top: 0.35rem;
}

.review-text {
  margin: 0;
  flex: 1;
  border: none;
  padding: 0;
}

.review-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq {
  padding: 3rem 0 5rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.faq .faq-item {
  background: var(--surface-2);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  backdrop-filter: none;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq .faq-item[open] {
  border-color: rgba(255, 107, 0, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.faq .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}

.faq .faq-question::-webkit-details-marker {
  display: none;
}

.faq .faq-question::marker {
  content: "";
}

.faq .faq-question::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(45deg);
  margin-top: -0.2rem;
  transition: transform 0.2s ease;
}

.faq .faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
}

.faq .faq-question:hover {
  color: var(--accent-2);
}

.faq .faq-question:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: -2px;
}

.faq .faq-answer {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.faq .faq-answer a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 149, 72, 0.6);
}

.faq .faq-answer a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.highlight-platforms--star .cad-workflow-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent-2);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.highlight-platforms--star .cad-workflow-icon svg {
  width: 32px;
  height: 32px;
}

