/* ============================================================
   Acesoft software product detail pages
   (e.g. asset-tagging.html)
   Enhanced UI · same theme (#ff3838 / #0f0f0f / Manrope)
   ============================================================ */

   :root {
    --acs-red: var(--theme-color2, #ff3838);
    --acs-red-deep: #d81f1f;
    --acs-ink: var(--theme-color1, #0f0f0f);
    --acs-ink-soft: #2a2a2a;
    --acs-muted: var(--text-color, #6a6a6a);
    --acs-line: #ececec;
    --acs-surface: #ffffff;
    --acs-surface-alt: #f7f7f8;
    --acs-radius: 16px;
    --acs-radius-sm: 12px;
    --acs-shadow-sm: 0 6px 22px rgba(15, 15, 15, 0.06);
    --acs-shadow-md: 0 18px 48px rgba(15, 15, 15, 0.10);
    --acs-shadow-lg: 0 30px 70px rgba(15, 15, 15, 0.16);
    --acs-ease: cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  /* ===================== Listing (products.html) ===================== */
  
  .acesoft-products-section {
    padding: 80px 0 100px;
  }
  
  .acesoft-products-section .sec-title {
    margin-bottom: 50px;
  }
  
  .acesoft-products-section .sec-title h2 {
    font-size: 46px;
    font-weight: 700;
    margin-top: 10px;
  }
  
  .acesoft-products-intro {
    max-width: 820px;
    margin: 20px auto 0;
    color: var(--acs-muted);
    font-size: 18px;
    line-height: 1.6;
  }
  
  .acesoft-products-grid {
    row-gap: 30px;
  }
  
  .acesoft-product-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--acs-surface);
    border: 1px solid var(--acs-line);
    border-radius: var(--acs-radius);
    padding: 34px 30px 30px;
    overflow: hidden;
    transition: transform 0.35s var(--acs-ease), border-color 0.35s var(--acs-ease),
      box-shadow 0.35s var(--acs-ease);
  }
  
  .acesoft-product-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--acs-red), var(--acs-red-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--acs-ease);
  }
  
  .acesoft-product-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--acs-shadow-md);
  }
  
  .acesoft-product-card:hover::before {
    transform: scaleX(1);
  }
  
  .acesoft-product-card__icon {
    font-size: 50px;
    line-height: 1;
    color: var(--acs-red);
    margin-bottom: 18px;
  }
  
  .acesoft-product-card__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--acs-ink);
    margin: 0 0 6px;
    line-height: 1.2;
  }
  
  .acesoft-product-card__version {
    font-size: 13px;
    font-weight: 700;
    color: var(--acs-red);
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .acesoft-product-card__text {
    flex: 1;
    margin: 0 0 22px;
    color: var(--acs-muted);
    font-size: 16px;
    line-height: 1.65;
  }
  
  .acesoft-product-card__btn {
    align-self: flex-start;
  }
  
  .acesoft-product-card__btn .fa-file-pdf-o {
    margin-left: 8px;
  }
  
  .acesoft-product-card__pdf-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--acs-muted);
    text-decoration: underline;
  }
  
  .acesoft-product-card__pdf-link:hover {
    color: var(--acs-red);
  }
  
  .acesoft-products-cta {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--acs-line);
  }
  
  .acesoft-products-cta p {
    font-size: 18px;
    color: var(--acs-muted);
    margin-bottom: 24px;
  }
  
  /* ===================== Page title strip ===================== */
  
  .acesoft-page-title {
    padding: 26px 0;
    background: var(--acs-surface-alt);
    border-bottom: 1px solid var(--acs-line);
  }
  
  .acesoft-page-title h2,
  .acesoft-page-title__heading {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 0;
    color: var(--acs-ink);
    margin: 0;
  }
  
  /* ===================== Shared section scaffolding ===================== */
  
  .acesoft-product-section {
    padding: 84px 0;
  }
  
  .acesoft-product-section--alt {
    background: var(--acs-surface-alt);
  }
  
  .acesoft-product-section--compact {
    padding: 56px 0 64px;
  }
  
  .acesoft-product-section .sec-title {
    margin-bottom: 14px;
  }
  
  .acesoft-product-section .sec-title h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 6px;
  }
  
  /* Eyebrow / sub-title */
  .acesoft-product-section .sub-title,
  .acesoft-product-overview .sub-title,
  .acesoft-product-feature-row .sub-title {
    position: relative;
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--acs-red);
    padding-left: 30px;
    margin-bottom: 14px;
  }
  
  .acesoft-product-section .sub-title::before,
  .acesoft-product-overview .sub-title::before,
  .acesoft-product-feature-row .sub-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--acs-red);
    transform: translateY(-50%);
  }
  
  .acesoft-product-section .sec-title .sub-title {
    display: inline-block;
  }
  
  /* ===================== HERO ===================== */
  
  .acesoft-product-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .acesoft-product-breadcrumb li + li::before {
    content: "/";
    margin: 0 0.45em;
    color: var(--acs-muted, #6b7280);
    font-weight: 600;
  }

  .acesoft-product-breadcrumb li span[aria-current="page"] {
    color: var(--acs-text, #1a1a2e);
  }

  .acesoft-product-breadcrumb {
    padding: 22px 0 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--acs-muted);
  }
  
  .acesoft-product-breadcrumb a {
    color: var(--acs-red);
  }
  
  .acesoft-product-breadcrumb a:hover {
    text-decoration: underline;
  }
  
  .acesoft-product-hero {
    position: relative;
    padding: 46px 0 84px;
    overflow: hidden;
    background:
      radial-gradient(900px 460px at 88% -8%, rgba(255, 56, 56, 0.10), transparent 60%),
      radial-gradient(680px 420px at -6% 110%, rgba(15, 15, 15, 0.05), transparent 60%),
      var(--acs-surface);
  }
  
  /* faint grid texture */
  .acesoft-product-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(15, 15, 15, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15, 15, 15, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(120% 90% at 70% 10%, #000 30%, transparent 75%);
    mask-image: radial-gradient(120% 90% at 70% 10%, #000 30%, transparent 75%);
    pointer-events: none;
  }
  
  .acesoft-product-hero .auto-container {
    position: relative;
    z-index: 1;
  }
  
  .acesoft-product-hero__grid {
    align-items: center;
    row-gap: 44px;
  }
  
  .acesoft-product-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--acs-red);
    background: rgba(255, 56, 56, 0.09);
    border: 1px solid rgba(255, 56, 56, 0.22);
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
  }
  
  .acesoft-product-hero__badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--acs-red);
    box-shadow: 0 0 0 4px rgba(255, 56, 56, 0.18);
    animation: acsPulse 2.4s var(--acs-ease) infinite;
  }
  
  @keyframes acsPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255, 56, 56, 0.18); }
    50% { box-shadow: 0 0 0 7px rgba(255, 56, 56, 0); }
  }
  
  .acesoft-product-hero h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin: 0 0 14px;
    color: var(--acs-ink);
  }
  
  .acesoft-product-hero h1 .acs-accent {
    color: var(--acs-red);
  }
  
  .acesoft-product-hero__tagline {
    font-size: 21px;
    font-weight: 700;
    color: var(--acs-ink-soft);
    margin: 0 0 20px;
  }
  
  .acesoft-product-hero__lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--acs-muted);
    max-width: 560px;
    margin-bottom: 30px;
  }
  
  .acesoft-product-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }
  
  .acesoft-product-hero__actions .btn-style-two {
    margin-left: 0;
  }
  
.acesoft-product-hero__actions a.theme-btn {
  display: inline-block;
}
  
  /* trust row under buttons */
  .acesoft-product-trustrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    margin-top: 26px;
    font-size: 14px;
    font-weight: 600;
    color: var(--acs-muted);
  }
  
  .acesoft-product-trustrow span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .acesoft-product-trustrow i {
    color: var(--acs-red);
  }
  
  /* hero image with floating chips */
  .acesoft-product-hero__media {
    position: relative;
  }
  
  .acesoft-product-hero__image {
    position: relative;
    border-radius: var(--acs-radius);
    overflow: hidden;
    box-shadow: var(--acs-shadow-lg);
    border: 1px solid var(--acs-line);
    margin: 0;
    transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
    transition: transform 0.6s var(--acs-ease);
  }
  
  .acesoft-product-hero__media:hover .acesoft-product-hero__image {
    transform: perspective(1400px) rotateY(0deg) rotateX(0deg);
  }
  
  .acesoft-product-hero__image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .acesoft-product-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--acs-line);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--acs-shadow-md);
    animation: acsFloat 6s ease-in-out infinite;
  }
  
  .acesoft-product-chip i {
    font-size: 18px;
    color: var(--acs-red);
  }
  
  .acesoft-product-chip strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--acs-ink);
    line-height: 1.1;
  }
  
  .acesoft-product-chip span {
    font-size: 12px;
    font-weight: 600;
    color: var(--acs-muted);
  }
  
  .acesoft-product-chip--tl {
    top: 22px;
    left: -22px;
    animation-delay: 0.4s;
  }
  
  .acesoft-product-chip--br {
    bottom: 26px;
    right: -20px;
  }
  
  @keyframes acsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
  }
  
  /* ===================== STATS BAND ===================== */
  
  .acesoft-product-stats {
    background: var(--acs-ink);
    padding: 0;
  }
  
  .acesoft-product-stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  
  .acesoft-product-stat {
    position: relative;
    padding: 40px 26px;
    text-align: center;
    color: #fff;
  }
  
  .acesoft-product-stat + .acesoft-product-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    height: 56%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
  }
  
  .acesoft-product-stat strong {
    display: block;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #fff, #ffb3b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .acesoft-product-stat span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.72);
  }
  
  /* ===================== OVERVIEW ===================== */
  
  .acesoft-product-overview {
    align-items: center;
    row-gap: 40px;
  }
  
  .acesoft-product-overview h2 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 8px 0 18px;
  }
  
  .acesoft-product-overview p {
    font-size: 17px;
    line-height: 1.72;
    color: var(--acs-muted);
    margin-bottom: 14px;
  }
  
  .acesoft-product-highlights {
    list-style: none;
    max-width: 720px;
    margin: 28px auto 40px;
    padding: 0;
  }
  
  .acesoft-product-highlights--left {
    max-width: none;
    margin: 4px 0 0;
    display: grid;
    gap: 12px;
  }
  
  .acesoft-product-highlights li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--acs-ink-soft);
    margin: 0;
    background: var(--acs-surface);
    border: 1px solid var(--acs-line);
    border-radius: 12px;
    padding: 14px 18px;
    transition: transform 0.3s var(--acs-ease), box-shadow 0.3s var(--acs-ease),
      border-color 0.3s var(--acs-ease);
  }
  
  .acesoft-product-highlights li:hover {
    transform: translateX(4px);
    border-color: rgba(255, 56, 56, 0.4);
    box-shadow: var(--acs-shadow-sm);
  }
  
  .acesoft-product-highlights .fa-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--acs-red), var(--acs-red-deep));
    border-radius: 50%;
    margin-top: 0;
    flex-shrink: 0;
  }
  
  /* ===================== PILLARS / CAPABILITIES ===================== */
  
  .acesoft-product-pillars {
    row-gap: 26px;
    margin-top: 44px;
  }
  
  .acesoft-product-pillars--four {
    margin-top: 40px;
  }
  
  .acesoft-product-pillar {
    position: relative;
    height: 100%;
    background: var(--acs-surface);
    border: 1px solid var(--acs-line);
    border-radius: var(--acs-radius);
    padding: 32px 26px;
    overflow: hidden;
    transition: transform 0.35s var(--acs-ease), border-color 0.35s var(--acs-ease),
      box-shadow 0.35s var(--acs-ease);
  }
  
  .acesoft-product-pillar::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 56, 56, 0.10), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s var(--acs-ease);
  }
  
  .acesoft-product-section--alt .acesoft-product-pillar {
    background: var(--acs-surface);
  }
  
  .acesoft-product-pillar:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 56, 56, 0.35);
    box-shadow: var(--acs-shadow-md);
  }
  
  .acesoft-product-pillar:hover::after {
    opacity: 1;
  }
  
  .acesoft-product-pillar__num {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--acs-red);
    margin-bottom: 8px;
  }
  
  .acesoft-product-pillar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    font-size: 28px;
    line-height: 1;
    color: var(--acs-red);
    background: rgba(255, 56, 56, 0.10);
    border-radius: 16px;
    margin-bottom: 18px;
    transition: transform 0.4s var(--acs-ease), background 0.4s var(--acs-ease),
      color 0.4s var(--acs-ease);
  }
  
  .acesoft-product-pillar:hover .acesoft-product-pillar__icon {
    transform: rotate(-6deg) scale(1.06);
    background: linear-gradient(135deg, var(--acs-red), var(--acs-red-deep));
    color: #fff;
  }
  
  .acesoft-product-pillar h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
  }
  
  .acesoft-product-pillar p {
    margin: 0;
    font-size: 15px;
    line-height: 1.62;
    color: var(--acs-muted);
  }
  
  /* ===================== FEATURE ROWS ===================== */
  
  .acesoft-product-feature-row {
    align-items: center;
    row-gap: 40px;
    margin-bottom: 56px;
  }
  
  .acesoft-product-feature-row:last-child {
    margin-bottom: 0;
  }
  
  .acesoft-product-feature-row h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 6px 0 14px;
  }
  
  .acesoft-product-feature-row > div > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--acs-muted);
    margin: 0 0 12px;
  }
  
  .acesoft-product-feature-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
  }
  
  .acesoft-product-feature-list li {
    position: relative;
    margin: 0 0 14px;
    padding: 0 0 0 34px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--acs-muted);
  }
  
  .acesoft-product-feature-list li strong {
    color: var(--acs-ink);
    font-weight: 800;
  }
  
  .acesoft-product-feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 10px;
    color: var(--acs-red);
    background: rgba(255, 56, 56, 0.12);
    border-radius: 6px;
  }
  
  .acesoft-product-shot {
    position: relative;
    border-radius: var(--acs-radius);
    overflow: hidden;
    border: 1px solid var(--acs-line);
    box-shadow: var(--acs-shadow-md);
    margin: 0;
    transition: transform 0.5s var(--acs-ease), box-shadow 0.5s var(--acs-ease);
  }
  
  .acesoft-product-shot:hover {
    transform: translateY(-4px);
    box-shadow: var(--acs-shadow-lg);
  }
  
  .acesoft-product-shot img {
    width: 100%;
    height: auto;
    display: block;
  }
  
.acesoft-product-shot a {
  display: block;
}

.acesoft-product-image-lightbox {
  display: block;
  cursor: zoom-in;
  line-height: 0;
}

.acesoft-product-image-lightbox img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.acesoft-product-image-lightbox:hover img {
  opacity: 0.92;
}

.acesoft-product-hero__image .acesoft-product-image-lightbox,
.acesoft-product-cap-card__img .acesoft-product-image-lightbox {
  display: block;
  cursor: zoom-in;
}
  
  /* ===================== BENEFITS ===================== */
  
  .acesoft-product-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 36px;
    padding: 0;
  }
  
  .acesoft-product-benefits li {
    position: relative;
    list-style: none;
    background: var(--acs-surface);
    border: 1px solid var(--acs-line);
    border-left: 4px solid var(--acs-red);
    padding: 20px 22px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--acs-ink-soft);
    border-radius: 0 12px 12px 0;
    box-shadow: var(--acs-shadow-sm);
    transition: transform 0.3s var(--acs-ease), box-shadow 0.3s var(--acs-ease);
  }
  
  .acesoft-product-benefits li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--acs-red);
  }
  
  .acesoft-product-benefits li:hover {
    transform: translateY(-5px);
    box-shadow: var(--acs-shadow-md);
  }
  
  /* ===================== INDUSTRIES ===================== */
  
  .acesoft-product-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }
  
  .acesoft-product-industries span {
    background: var(--acs-surface);
    border: 1px solid var(--acs-line);
    border-radius: 999px;
    padding: 11px 22px;
    font-size: 15px;
    font-weight: 700;
    color: var(--acs-ink-soft);
    transition: transform 0.25s var(--acs-ease), background 0.25s var(--acs-ease),
      color 0.25s var(--acs-ease), border-color 0.25s var(--acs-ease);
  }
  
  .acesoft-product-industries span:hover {
    transform: translateY(-3px);
    background: var(--acs-red);
    border-color: var(--acs-red);
    color: #fff;
  }
  
  /* ===================== CAPABILITY CARDS (dashboards) ===================== */
  
  .acesoft-product-cards-three {
    row-gap: 30px;
    margin-top: 44px;
  }
  
  .acesoft-product-cap-card {
    height: 100%;
    background: var(--acs-surface);
    border-radius: var(--acs-radius);
    overflow: hidden;
    border: 1px solid var(--acs-line);
    box-shadow: var(--acs-shadow-sm);
    transition: transform 0.35s var(--acs-ease), box-shadow 0.35s var(--acs-ease);
  }
  
  .acesoft-product-cap-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--acs-shadow-md);
  }
  
  .acesoft-product-cap-card__img {
    position: relative;
    overflow: hidden;
    background: var(--acs-surface-alt);
  }
  
  .acesoft-product-cap-card__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 15, 15, 0.06));
    pointer-events: none;
  }
  
  .acesoft-product-cap-card__img a {
    display: block;
  }
  
  .acesoft-product-cap-card__img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s var(--acs-ease);
  }
  
  .acesoft-product-cap-card:hover .acesoft-product-cap-card__img img {
    transform: scale(1.05);
  }
  
  .acesoft-product-cap-card__body {
    padding: 24px 24px 28px;
  }
  
  .acesoft-product-cap-card__body h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
  }
  
  .acesoft-product-cap-card__body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.62;
    color: var(--acs-muted);
  }
  
  .acesoft-product-cap-card__impact {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--acs-red);
  }
  
  .acesoft-product-more-note {
    margin: 40px auto 0;
    font-size: 16px;
    color: var(--acs-muted);
    max-width: 660px;
    text-align: center;
  }
  
  .acesoft-product-more-note strong {
    color: var(--acs-ink);
  }
  
  /* ===================== PREVIEW GRID ===================== */
  
  .acesoft-product-preview {
    row-gap: 22px;
  }
  
  .acesoft-product-preview__item {
    margin: 0;
    border-radius: var(--acs-radius-sm);
    overflow: hidden;
    border: 1px solid var(--acs-line);
    box-shadow: var(--acs-shadow-sm);
  }
  
  .acesoft-product-preview__item img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* ===================== PDF TEASER ===================== */
  
  .acesoft-product-pdf-teaser {
    position: relative;
    padding: 60px 0 66px;
    background:
      radial-gradient(600px 300px at 50% 0%, rgba(255, 56, 56, 0.07), transparent 70%),
      var(--acs-surface-alt);
    border-top: 1px solid var(--acs-line);
    text-align: center;
  }
  
  .acesoft-product-pdf-teaser p {
    font-size: 19px;
    font-weight: 600;
    color: var(--acs-ink-soft);
    max-width: 640px;
    margin: 0 auto 24px;
  }
  
.acesoft-product-pdf-teaser .theme-btn {
  display: inline-block;
}
  
  .acesoft-product-pdf-teaser__download {
    display: inline-block;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--acs-muted);
    text-decoration: underline;
  }
  
  .acesoft-product-pdf-teaser__download:hover {
    color: var(--acs-red);
  }
  
  /* ===================== CTA BAND ===================== */
  
  .acesoft-product-cta-band {
    position: relative;
    padding: 84px 0;
    text-align: center;
    background:
      radial-gradient(700px 360px at 78% -20%, rgba(255, 56, 56, 0.30), transparent 60%),
      radial-gradient(600px 320px at 10% 120%, rgba(255, 56, 56, 0.14), transparent 60%),
      linear-gradient(135deg, #161616 0%, #060606 100%);
    color: #fff;
    overflow: hidden;
  }
  
  .acesoft-product-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
    -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 35%, transparent 75%);
    mask-image: radial-gradient(120% 100% at 50% 0%, #000 35%, transparent 75%);
    pointer-events: none;
  }
  
  .acesoft-product-cta-band .auto-container {
    position: relative;
    z-index: 1;
  }
  
  .acesoft-product-cta-band h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  
  .acesoft-product-cta-band p {
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.82);
  }
  
  .acesoft-product-cta-band .theme-btn {
    margin: 0 8px 10px;
  }
  
  /* ===================== PDF VIEWER MODAL ===================== */
  
  body.acesoft-pdf-modal-open {
    overflow: hidden;
  }
  
  .acesoft-pdf-modal[hidden] {
    display: none !important;
  }
  
  .acesoft-pdf-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
  }
  
  .acesoft-pdf-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    cursor: pointer;
  }
  
  .acesoft-pdf-modal__panel {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    height: min(90vh, 900px);
    background: #fff;
    border-radius: var(--acs-radius-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  }
  
  .acesoft-pdf-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 18px;
    background: var(--acs-ink);
    color: #fff;
    flex-shrink: 0;
  }
  
  .acesoft-pdf-modal__title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
  }
  
  .acesoft-pdf-modal__tools {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }
  
  .acesoft-pdf-modal__open-tab {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
    white-space: nowrap;
  }
  
  .acesoft-pdf-modal__open-tab:hover {
    color: var(--acs-red);
  }
  
  .acesoft-pdf-modal__close {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s var(--acs-ease);
  }
  
  .acesoft-pdf-modal__close:hover {
    background: var(--acs-red);
  }
  
  .acesoft-pdf-modal__body {
    flex: 1;
    min-height: 0;
    background: #525659;
  }
  
  .acesoft-pdf-modal__frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  
  /* ===================== Entrance reveal (CSS-only) ===================== */
  
  .acs-reveal {
    opacity: 0;
    transform: translateY(26px);
    animation: acsReveal 0.7s var(--acs-ease) forwards;
  }
  
  .acs-reveal[data-delay="1"] { animation-delay: 0.08s; }
  .acs-reveal[data-delay="2"] { animation-delay: 0.16s; }
  .acs-reveal[data-delay="3"] { animation-delay: 0.24s; }
  .acs-reveal[data-delay="4"] { animation-delay: 0.32s; }
  
  @keyframes acsReveal {
    to { opacity: 1; transform: translateY(0); }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .acs-reveal,
    .acesoft-product-chip,
    .acesoft-product-hero__badge::before {
      animation: none !important;
    }
    .acs-reveal { opacity: 1; transform: none; }
    .acesoft-product-hero__image { transform: none; }
  }
  
  /* ===================== RESPONSIVE ===================== */
  
  @media only screen and (max-width: 1199px) {
    .acesoft-product-hero h1 { font-size: 50px; }
  }
  
  @media only screen and (max-width: 991px) {
    .acesoft-product-hero h1 { font-size: 40px; }
    .acesoft-product-section { padding: 64px 0; }
    .acesoft-product-stats__inner { grid-template-columns: repeat(2, 1fr); }
    .acesoft-product-stat:nth-child(3)::before { display: none; }
    .acesoft-product-stat:nth-child(odd)::before { display: none; }
    .acesoft-product-chip--tl { left: 0; }
    .acesoft-product-chip--br { right: 0; }
  }
  
  @media only screen and (max-width: 767px) {
    .acesoft-products-section { padding: 50px 0 70px; }
    .acesoft-products-section .sec-title h2 { font-size: 32px; }
    .acesoft-product-card { padding: 26px 22px; }
  
    .acesoft-product-hero { padding: 30px 0 56px; }
    .acesoft-product-hero h1 { font-size: 32px; }
    .acesoft-product-hero__tagline { font-size: 18px; }
    .acesoft-product-hero__lead { font-size: 16px; }
    .acesoft-product-hero__image { transform: none; }
    .acesoft-product-hero__actions .theme-btn { width: 100%; text-align: center; }
    .acesoft-product-chip { display: none; }
  
    .acesoft-product-section { padding: 48px 0; }
    .acesoft-product-section .sec-title h2 { font-size: 27px; }
    .acesoft-product-overview h2,
    .acesoft-product-feature-row h3 { font-size: 24px; }
  
    .acesoft-product-stat { padding: 28px 16px; }
    .acesoft-product-stat strong { font-size: 30px; }
  
    .acesoft-product-cap-card__img img { height: auto; }
  
    .acesoft-product-cta-band { padding: 60px 0; }
    .acesoft-product-cta-band h2 { font-size: 28px; }
    .acesoft-product-cta-band .theme-btn { width: 100%; margin: 0 0 12px; text-align: center; }
  
    .acesoft-pdf-modal { padding: 0; }
    .acesoft-pdf-modal__panel { width: 100%; height: 100%; max-height: 100%; border-radius: 0; }
    .acesoft-pdf-modal__title { font-size: 15px; }

    .acesoft-product-hero--v2 .acesoft-product-hero__metrics {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* ===================== Hero v2 (product detail pages) ===================== */

  .acesoft-product-detail .acesoft-page-title {
    display: none;
  }

  /* Product page header: same visuals as index (white nav bar + theme menu layout) */

  .acesoft-product-detail .header-style-three .container-fluid {
    background-color: #fff;
  }

  /* Active product: underline Products (like Home on index) */
  .acesoft-product-detail .main-menu .navigation > li.dropdown:has(.acesoft-nav-current-link) > a {
    border-bottom: 2px solid var(--acs-red, #ff3838);
  }

  .acesoft-product-detail #main-content {
    position: relative;
    z-index: 1;
  }

  .acesoft-product-hero--v2 {
    padding: 200px 0 72px;
    margin-top: 0;
    background: linear-gradient(165deg, #fafafa 0%, #ffffff 42%, #f5f6f8 100%);
  }

  .acesoft-product-hero--v2::before {
    display: none;
  }

  .acesoft-product-hero__backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }

  .acesoft-product-hero__bg-image {
    position: absolute;
    inset: -8% -4%;
    background-size: cover;
    background-position: center 30%;
    opacity: 0.14;
    filter: blur(2px) saturate(1.1);
    transform: scale(1.06);
    animation: acsHeroBgDrift 22s ease-in-out infinite alternate;
  }

  .acesoft-product-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(105deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.72) 62%, rgba(255, 255, 255, 0.9) 100%),
      radial-gradient(ellipse 80% 60% at 78% 22%, rgba(255, 56, 56, 0.08), transparent 55%),
      radial-gradient(ellipse 50% 40% at 12% 88%, rgba(15, 15, 15, 0.04), transparent 50%);
  }

  .acesoft-product-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
    animation: acsOrbFloat 14s ease-in-out infinite;
  }

  .acesoft-product-hero__orb--1 {
    width: 320px;
    height: 320px;
    top: -80px;
    right: 8%;
    background: rgba(255, 56, 56, 0.22);
  }

  .acesoft-product-hero__orb--2 {
    width: 240px;
    height: 240px;
    bottom: 10%;
    left: -40px;
    background: rgba(15, 15, 15, 0.08);
    animation-delay: -4s;
  }

  .acesoft-product-hero__orb--3 {
    width: 180px;
    height: 180px;
    top: 42%;
    right: 42%;
    background: rgba(255, 180, 180, 0.35);
    animation-delay: -7s;
  }

  @keyframes acsHeroBgDrift {
    from { transform: scale(1.06) translate3d(0, 0, 0); }
    to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
  }

  @keyframes acsOrbFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(12px, -18px, 0) scale(1.06); }
  }

  .acesoft-product-hero--v2 .acesoft-product-breadcrumb {
    padding-top: 0;
    margin-bottom: 20px;
  }

  .acesoft-product-hero--v2 h1 {
    color: var(--acs-ink);
  }

  .acesoft-product-hero--v2 h1 .acs-accent {
    color: var(--acs-red);
  }

  .acesoft-product-hero--v2 .acesoft-product-hero__grid {
    row-gap: 36px;
  }

  .acesoft-product-hero--v2 .col-lg-6:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .acesoft-product-hero--v2 .acesoft-product-hero__badge {
    box-shadow: 0 4px 18px rgba(255, 56, 56, 0.12);
  }

  .acesoft-product-hero--v2 .acesoft-product-chip--tl {
    left: 8px;
    top: 16px;
  }

  .acesoft-product-hero--v2 .acesoft-product-chip--br {
    right: 8px;
    bottom: 16px;
  }

  .acesoft-product-detail .acesoft-product-pillar.acs-inview {
    transition: opacity 0.55s var(--acs-ease), transform 0.55s var(--acs-ease),
      box-shadow 0.35s var(--acs-ease), border-color 0.35s var(--acs-ease);
  }

  .acesoft-product-hero__frame-glow {
    position: absolute;
    inset: -12px;
    border-radius: calc(var(--acs-radius) + 8px);
    background: linear-gradient(135deg, rgba(255, 56, 56, 0.35), rgba(15, 15, 15, 0.08), rgba(255, 56, 56, 0.2));
    opacity: 0.65;
    z-index: 0;
    animation: acsGlowPulse 5s ease-in-out infinite;
  }

  @keyframes acsGlowPulse {
    0%, 100% { opacity: 0.45; transform: scale(0.99); }
    50% { opacity: 0.75; transform: scale(1.01); }
  }

  .acesoft-product-hero--v2 .acesoft-product-hero__image {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
      0 24px 60px rgba(15, 15, 15, 0.14),
      0 0 0 1px rgba(255, 56, 56, 0.06);
  }

  .acesoft-product-hero--v2 .acesoft-product-hero__media {
    transition: transform 0.35s var(--acs-ease);
    transform-style: preserve-3d;
  }

  .acesoft-product-hero--v2 .acesoft-product-hero__media.is-tilting .acesoft-product-hero__image {
    transition: transform 0.15s ease-out;
  }

  .acesoft-hero-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--acs-ease), box-shadow 0.3s var(--acs-ease);
  }

  .acesoft-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 15, 15, 0.14);
  }

  .acesoft-hero-btn.btn-style-one:hover {
    box-shadow: 0 12px 28px rgba(255, 56, 56, 0.35);
  }

  .acesoft-product-hero__metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(15, 15, 15, 0.08);
    position: relative;
    z-index: 2;
  }

  .acesoft-product-hero__metric {
    position: relative;
    padding: 22px 20px;
    text-align: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 15, 15, 0.07);
    border-radius: var(--acs-radius-sm);
    box-shadow: var(--acs-shadow-sm);
    transition: transform 0.35s var(--acs-ease), border-color 0.35s var(--acs-ease), box-shadow 0.35s var(--acs-ease);
    cursor: default;
  }

  .acesoft-product-hero__metric::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--acs-red), var(--acs-red-deep));
    opacity: 0;
    transition: opacity 0.35s var(--acs-ease), width 0.35s var(--acs-ease);
  }

  .acesoft-product-hero__metric:hover,
  .acesoft-product-hero__metric:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(255, 56, 56, 0.25);
    box-shadow: var(--acs-shadow-md);
    outline: none;
  }

  .acesoft-product-hero__metric:hover::before,
  .acesoft-product-hero__metric:focus-visible::before {
    opacity: 1;
    width: 56px;
  }

  .acesoft-product-hero__metric strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--acs-ink);
    background: linear-gradient(135deg, var(--acs-ink) 20%, var(--acs-red-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .acesoft-product-hero__metric span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--acs-muted);
    line-height: 1.35;
  }

  .acesoft-product-hero__metric.is-visible {
    animation: acsMetricPop 0.55s var(--acs-ease) forwards;
  }

  @keyframes acsMetricPop {
    from {
      opacity: 0;
      transform: translateY(16px) scale(0.96);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @media only screen and (max-width: 1199px) {
    .acesoft-product-hero--v2 {
      padding-top: 180px;
    }
  }

  @media only screen and (max-width: 991px) {
    .acesoft-product-hero--v2 {
      padding-top: 160px;
    }

    .acesoft-product-hero--v2 .acesoft-product-hero__metrics {
      grid-template-columns: repeat(2, 1fr);
      margin-top: 40px;
    }

    .acesoft-product-hero__frame-glow {
      display: none;
    }
  }

  @media only screen and (max-width: 767px) {
    .acesoft-product-hero--v2 {
      padding: 140px 0 48px;
    }

    .acesoft-product-hero__bg-image {
      opacity: 0.1;
    }

    .acesoft-product-hero__metric strong {
      font-size: 24px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .acesoft-product-hero__bg-image,
    .acesoft-product-hero__orb,
    .acesoft-product-hero__frame-glow {
      animation: none !important;
    }

    .acesoft-product-hero--v2 .acesoft-product-hero__media {
      transform: none !important;
    }

    .acesoft-product-hero__metric {
      opacity: 1;
    }
  }

  /* ===================== Premium layout (asset-tagging) ===================== */

  .acesoft-product-detail .acesoft-product-section-head {
    max-width: 720px;
    margin-bottom: 48px;
  }

  .acesoft-product-detail .acesoft-product-section-head--center {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .acesoft-product-detail .acesoft-product-section-head--center .sub-title {
    padding-left: 0;
  }

  .acesoft-product-detail .acesoft-product-section-head--center .sub-title::before {
    display: none;
  }

  .acesoft-product-detail .acesoft-product-section-head h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin: 0 0 16px;
    color: var(--acs-ink);
  }

  .acesoft-product-detail .acesoft-product-section-head__lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--acs-muted);
    margin: 0;
  }

  .acesoft-product-detail .acesoft-product-section--overview {
    position: relative;
    overflow: hidden;
  }

  .acesoft-product-detail .acesoft-product-section--overview::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 56, 56, 0.06), transparent 68%);
    pointer-events: none;
  }

  .acesoft-product-overview-v2 {
    align-items: stretch;
    row-gap: 36px;
  }

  .acesoft-product-value-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
  }

  .acesoft-product-value-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 22px;
    background: var(--acs-surface);
    border: 1px solid var(--acs-line);
    border-radius: var(--acs-radius);
    box-shadow: var(--acs-shadow-sm);
    transition: transform 0.4s var(--acs-ease), box-shadow 0.4s var(--acs-ease), border-color 0.4s var(--acs-ease);
  }

  .acesoft-product-value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 56, 56, 0.28);
    box-shadow: var(--acs-shadow-md);
  }

  .acesoft-product-value-card__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--acs-red), var(--acs-red-deep));
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(255, 56, 56, 0.28);
  }

  .acesoft-product-value-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
  }

  .acesoft-product-value-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--acs-muted);
  }

  .acesoft-product-highlights--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: none;
    margin: 0;
  }

  .acesoft-product-highlights--grid li {
    margin: 0;
    min-height: 100%;
  }

  .acesoft-product-detail .acesoft-product-section--pillars {
    position: relative;
  }

  .acesoft-product-detail .acesoft-product-section--pillars::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--acs-line), transparent);
  }

  .acesoft-product-detail .acesoft-product-section--flow {
    background:
      radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 56, 56, 0.06), transparent 60%),
      var(--acs-surface);
    border-top: 1px solid var(--acs-line);
    border-bottom: 1px solid var(--acs-line);
  }

  .acesoft-product-flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
  }

  .acesoft-product-flow::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--acs-red), rgba(255, 56, 56, 0.2), var(--acs-red));
    opacity: 0.35;
    z-index: 0;
  }

  .acesoft-product-flow__step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 12px;
  }

  .acesoft-product-flow__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    font-size: 26px;
    font-weight: 800;
    color: var(--acs-red);
    background: var(--acs-surface);
    border: 2px solid rgba(255, 56, 56, 0.25);
    border-radius: 50%;
    box-shadow: var(--acs-shadow-sm);
    transition: transform 0.4s var(--acs-ease), background 0.4s var(--acs-ease), color 0.4s var(--acs-ease), border-color 0.4s var(--acs-ease);
  }

  .acesoft-product-flow__step:hover .acesoft-product-flow__num {
    transform: scale(1.06);
    background: linear-gradient(135deg, var(--acs-red), var(--acs-red-deep));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 14px 32px rgba(255, 56, 56, 0.35);
  }

  .acesoft-product-flow__body h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px;
  }

  .acesoft-product-flow__body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--acs-muted);
  }

  .acesoft-product-shot--premium {
    position: relative;
    border: none;
    box-shadow:
      0 28px 64px rgba(15, 15, 15, 0.12),
      0 0 0 1px rgba(255, 56, 56, 0.08);
  }

  .acesoft-product-shot--premium::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 56, 56, 0.12), transparent 45%);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.45s var(--acs-ease);
  }

  .acesoft-product-shot--premium:hover::before {
    opacity: 1;
  }

  .acesoft-product-shot__label {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(15, 15, 15, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .acesoft-product-detail .acesoft-product-section--dashboards {
    background:
      linear-gradient(180deg, var(--acs-surface-alt) 0%, var(--acs-surface) 100%);
  }

  .acesoft-product-cards-three--premium {
    margin-top: 8px;
  }

  .acesoft-product-cap-card--featured {
    border-color: rgba(255, 56, 56, 0.22);
    box-shadow: 0 20px 50px rgba(255, 56, 56, 0.1), var(--acs-shadow-md);
  }

  .acesoft-product-cap-card--featured .acesoft-product-cap-card__img img {
    height: 280px;
  }

  .acesoft-product-cap-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--acs-red);
    background: rgba(255, 56, 56, 0.1);
    border: 1px solid rgba(255, 56, 56, 0.22);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
  }

  .acesoft-product-pdf-teaser--premium {
    padding: 72px 0 80px;
    background: var(--acs-surface);
    border-top: none;
  }

  .acesoft-product-pdf-teaser__card {
    display: flex;
    align-items: center;
    gap: 36px;
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 44px;
    background:
      radial-gradient(ellipse 80% 120% at 0% 50%, rgba(255, 56, 56, 0.08), transparent 55%),
      linear-gradient(135deg, #fafafa 0%, #ffffff 55%, #f7f7f8 100%);
    border: 1px solid var(--acs-line);
    border-radius: calc(var(--acs-radius) + 4px);
    box-shadow: var(--acs-shadow-md);
    text-align: left;
  }

  .acesoft-product-pdf-teaser__icon {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--acs-red);
    background: rgba(255, 56, 56, 0.1);
    border-radius: 22px;
    border: 1px solid rgba(255, 56, 56, 0.2);
  }

  .acesoft-product-pdf-teaser__content h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: var(--acs-ink);
  }

  .acesoft-product-pdf-teaser__content p {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--acs-muted);
  }

  .acesoft-product-pdf-teaser__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .acesoft-product-pdf-teaser__actions .btn-style-two {
    margin-left: 0;
  }

  .acesoft-product-cta-band__inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .acesoft-product-cta-band__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 14px;
  }

  .acesoft-product-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .acesoft-product-cta-band__actions .btn-style-two {
    margin-left: 0;
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
  }

  .acesoft-product-cta-band__actions .btn-style-two:hover {
    background: #fff;
    color: var(--acs-ink);
  }

  /* Scroll reveal (asset page) */
  .acesoft-product-detail .acs-inview {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s var(--acs-ease), transform 0.6s var(--acs-ease);
  }

  .acesoft-product-detail .acs-inview.is-inview {
    opacity: 1;
    transform: translateY(0);
  }

  .acesoft-product-detail .acesoft-product-pillar.is-inview:hover,
  .acesoft-product-detail .acesoft-product-pillar.acs-inview.is-inview:hover {
    transform: translateY(-7px);
  }

  @media only screen and (max-width: 991px) {
    .acesoft-product-highlights--grid {
      grid-template-columns: 1fr;
    }

    .acesoft-product-flow {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 20px;
    }

    .acesoft-product-flow::before {
      display: none;
    }

    .acesoft-product-pdf-teaser__card {
      flex-direction: column;
      text-align: center;
      padding: 32px 28px;
    }

    .acesoft-product-pdf-teaser__actions {
      justify-content: center;
    }
  }

  @media only screen and (max-width: 767px) {
    .acesoft-product-detail .acesoft-product-section-head h2 {
      font-size: 30px;
    }

    .acesoft-product-flow {
      grid-template-columns: 1fr;
    }

    .acesoft-product-trustrow {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .acesoft-product-pdf-teaser__actions .theme-btn {
      width: 100%;
      text-align: center;
    }

    .acesoft-product-cta-band__actions .theme-btn {
      width: 100%;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .acesoft-product-detail .acs-inview {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }