@font-face { font-family: Poppins; src: url('../fonts/poppins-regular.woff2') format('woff2'); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: Poppins; src: url('../fonts/poppins-bold.woff2') format('woff2'); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: FontAwesome; src: url('../fonts/fontawesome-webfont.woff2') format('woff2'); font-style: normal; font-weight: 400; font-display: block; }

:root {
  --ink: #333;
  --muted: #707070;
  --cyan: #15b3dd;
  --cyan-dark: #0893ba;
  --line: #e5e5e5;
  --nav: #04272d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; color: var(--ink); background: #fff; font-family: Poppins, "Microsoft YaHei", sans-serif; font-size: 16px; line-height: 1.6; }
main { padding-top: 60px; }
.home-page main { padding-top: 0; }
a { color: var(--cyan); }
.site-width { width: min(1140px, calc(100% - 48px)); margin-inline: auto; }

/* Shared header: the home page floats over the photographic hero, like vamsoft.com. */
.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 60px; color: #fff; background: rgba(3, 35, 41, .96); transition: background-color .25s, box-shadow .25s; }
.home-page .site-header, .product-page .site-header { background: transparent; }
.home-page .site-header.is-scrolled, .product-page .site-header.is-scrolled { background: #fff; box-shadow: 0 3px 12px rgba(0, 0, 0, .12); }
.home-page .site-header.is-scrolled .brand-logo-white, .product-page .site-header.is-scrolled .brand-logo-white { opacity: 0; }
.home-page .site-header.is-scrolled .brand-logo-colored, .product-page .site-header.is-scrolled .brand-logo-colored { opacity: 1; }
.home-page .site-header.is-scrolled .nav-links > a,
.home-page .site-header.is-scrolled .nav-group > a,
.product-page .site-header.is-scrolled .nav-links > a,
.product-page .site-header.is-scrolled .nav-group > a { color: #333; }
.site-nav { height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { position: relative; width: 110px; height: 60px; flex: 0 0 auto; display: inline-flex; color: #fff; text-decoration: none; }
.brand-logo { position: absolute; inset: 0; width: 110px; height: 60px; object-fit: contain; transition: opacity .2s ease; }
.brand-logo-white { opacity: 1; }
.brand-logo-colored { opacity: 0; }
.nav-links { height: 100%; display: flex; align-items: center; gap: 23px; }
.nav-links > a, .nav-group > a { position: relative; display: inline-flex; align-items: center; color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.nav-links > a::before, .nav-group > a::before { content: ""; position: absolute; inset: -10px -14px; border: 1px solid transparent; border-radius: 999px; pointer-events: none; transition: border-color .2s ease; }
.nav-links > a:hover::before, .nav-links > a:focus-visible::before, .nav-group:hover > a::before, .nav-group:focus-within > a::before { border-color: rgba(255, 255, 255, .65); }
.home-page .site-header.is-scrolled .nav-links > a:hover::before, .home-page .site-header.is-scrolled .nav-links > a:focus-visible::before, .home-page .site-header.is-scrolled .nav-group:hover > a::before, .home-page .site-header.is-scrolled .nav-group:focus-within > a::before,
.product-page .site-header.is-scrolled .nav-links > a:hover::before, .product-page .site-header.is-scrolled .nav-links > a:focus-visible::before, .product-page .site-header.is-scrolled .nav-group:hover > a::before, .product-page .site-header.is-scrolled .nav-group:focus-within > a::before { border-color: rgba(51, 51, 51, .38); }
.nav-plus { width: 14px; margin-left: 6px; display: inline-block; font-size: 0; font-weight: 400; line-height: 1; text-align: center; }
.nav-plus::after { content: "+"; font-size: 18px; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--cyan); }
.nav-group { position: relative; height: 100%; display: flex; align-items: center; }
.nav-dropdown { position: absolute; z-index: 120; top: 42px; left: -17px; width: 200px; padding: 0; display: none; border: 0; background: #fff; box-shadow: 0 12px 28px rgba(0, 0, 0, .2); }
.nav-dropdown a { padding: 8px 15px; display: block; color: #333; background: #fff; font-size: 13px; font-weight: 500; line-height: 19px; text-decoration: none; }
.nav-dropdown a:hover, .nav-dropdown a:focus-visible { color: var(--cyan-dark); background: #f1f1f1; }
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown { display: block; }
.nav-group:hover > a .nav-plus::after, .nav-group:focus-within > a .nav-plus::after { content: "−"; }
.nav-dropdown-support { right: -17px; left: auto; width: 200px; }
.nav-subgroup { position: relative; }
.nav-submenu-trigger { display: flex !important; align-items: center; justify-content: space-between; gap: 24px; }
.nav-submenu-plus { width: 14px; display: inline-block; font-size: 0; line-height: 1; text-align: center; }
.nav-submenu-plus::after { content: "+"; font-size: 18px; }
.nav-submenu { position: absolute; z-index: 121; top: 0; left: 100%; width: 250px; display: none; background: #fff; box-shadow: 10px 12px 28px rgba(0, 0, 0, .18); }
.nav-dropdown-support .nav-submenu { right: 100%; left: auto; box-shadow: -10px 12px 28px rgba(0, 0, 0, .18); }
.nav-subgroup:hover > .nav-submenu, .nav-subgroup:focus-within > .nav-submenu { display: block; }
.nav-subgroup:hover > .nav-submenu-trigger, .nav-subgroup:focus-within > .nav-submenu-trigger { color: var(--cyan-dark); background: #f1f1f1; }
.nav-subgroup:hover > .nav-submenu-trigger .nav-submenu-plus::after, .nav-subgroup:focus-within > .nav-submenu-trigger .nav-submenu-plus::after { content: "−"; }
.nav-toggle { width: 44px; height: 44px; padding: 0; display: none; place-content: center; gap: 5px; border: 0; color: #fff; background: transparent; }
.nav-toggle span { width: 24px; height: 2px; display: block; background: currentColor; }
.admin-site-nav { gap: 20px; }
.admin-nav-links { margin-left: auto; gap: 17px; }
.admin-nav-links .nav-dropdown { width: 170px; }
.admin-session { margin-left: 4px; display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.admin-session > span { padding: 7px 11px; border-radius: 7px; color: #5d4816; background: #fff2d4; font-size: 12px; line-height: 1.4; }
.admin-session strong { font-weight: 400; }
.admin-session form { margin: 0; }
.admin-session button { min-height: 34px; padding: 0 12px; border: 0; border-radius: 7px; color: #075e9e; background: #eaf3ff; font: 700 12px/1 Poppins, "Microsoft YaHei", sans-serif; cursor: pointer; }
.admin-session button:hover, .admin-session button:focus-visible { color: #fff; background: var(--cyan-dark); }

@media (max-width: 1360px) and (min-width: 821px) {
  .nav-submenu { right: 100%; left: auto; box-shadow: -10px 12px 28px rgba(0, 0, 0, .18); }
}

/* Hero */
.hero-carousel, .hero-carousel-track, .hero-slide { min-height: 478px; }
.hero-carousel { position: relative; overflow: hidden; color: #fff; background: var(--nav); }
.hero-slide { position: absolute; inset: 0; display: grid; opacity: 0; visibility: hidden; background-color: #062f37; background-image: var(--slide-image); background-position: left top; background-size: 175% auto; background-repeat: no-repeat; transition: opacity .65s ease, visibility .65s; }
.hero-slide.is-active { position: relative; opacity: 1; visibility: visible; }
.hero-slide .hero-copy { opacity: 0; transform: translate3d(0, 22px, 0); transition: opacity .65s ease .18s, transform .65s ease .18s; }
.hero-slide.is-active .hero-copy { opacity: 1; transform: translate3d(0, 0, 0); }
.hero-slide-shade { position: absolute; inset: 0; background: rgba(0, 26, 31, .08); }
.hero-slide-content { position: relative; z-index: 2; height: 478px; padding: 120px 0 45px; display: flex; justify-content: center; }
.hero-copy { width: 420px; max-width: 100%; }
.hero-copy h1 { margin: 0; color: #fff; font-size: 42px; font-weight: 700; line-height: 1.1; letter-spacing: 0; }
.hero-copy h2 { margin: 10px 0 0; color: #fff; font-size: 28px; font-weight: 400; line-height: 1.1; letter-spacing: 0; }
.hero-description { margin: 14px 0 0; font-size: 16px; line-height: 1.5; }
.hero-note { margin: 10px 0 0; font-size: 16px; }
.hero-bullets { margin: 13px 0 0; padding: 0; display: grid; gap: 2px; list-style: none; font-size: 23px; line-height: 1.35; }
.hero-bullets li::before { content: "✓"; margin-right: 8px; }
.hero-actions { margin-top: 20px; display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.button { min-height: 44px; min-width: 124px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 0; font: inherit; font-size: 14px; text-transform: uppercase; text-decoration: none; }
.button-primary { color: #fff; background: var(--cyan); }
.button-primary:hover, .button-primary:focus-visible { color: #fff; background: var(--cyan-dark); }
.hero-or { color: #fff; font-size: 16px; }
.button-link { color: var(--cyan); font-size: 16px; text-underline-offset: 3px; }
.carousel-dots { position: absolute; z-index: 5; left: 50%; bottom: 38px; display: flex; gap: 10px; transform: translateX(-50%); }
.carousel-dot { width: 12px; height: 12px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .36); }
.carousel-dot.is-active { background: #fff; }
.carousel-arrow { position: absolute; z-index: 5; top: 50%; width: 30px; height: 48px; padding: 0; border: 0; color: #fff; background: transparent; font: 300 52px/1 Arial, sans-serif; transform: translateY(-50%); }
.carousel-arrow:hover, .carousel-arrow:focus-visible { color: var(--cyan); }
.carousel-previous { left: 48px; }
.carousel-next { right: 48px; }

/* Four concise benefits immediately after the hero. */
.orf-benefits { min-height: 326px; padding: 47px 0 45px; display: flex; align-items: center; background: #fff; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; text-align: center; }
.benefit-grid article { min-width: 0; padding-inline: 15px; }
.benefit-icon { width: 60px; height: 60px; margin: 0 auto 40px; display: block; border: 1px solid #e5e5e5; border-radius: 50%; background: transparent; transform: scale(1); transition: color .38s ease, border-color .38s ease, background-color .38s ease, transform .38s cubic-bezier(.2,.8,.2,1), box-shadow .38s ease; }
.benefit-icon::before { content: ""; width: 100%; height: 100%; display: block; background: var(--cyan); mask: var(--benefit-icon) center / 28px 28px no-repeat; -webkit-mask: var(--benefit-icon) center / 28px 28px no-repeat; transition: background-color .38s ease; }
.benefit-grid article:hover .benefit-icon,
.benefit-grid article:focus-within .benefit-icon { border-color: var(--cyan); background: var(--cyan); transform: scale(1.08); box-shadow: 0 8px 22px rgba(21, 179, 221, .2); }
.benefit-grid article:hover .benefit-icon::before,
.benefit-grid article:focus-within .benefit-icon::before { background: #fff; }
.icon-database { --benefit-icon: url('../icons/database.svg'); }
.icon-users { --benefit-icon: url('../icons/users.svg'); }
.icon-smile { --benefit-icon: url('../icons/smile.svg'); }
.icon-rocket { --benefit-icon: url('../icons/rocket.svg'); }
.benefit-grid h2 { margin: 0 0 10px; font-size: 19px; font-weight: 700; line-height: 1.1; text-transform: uppercase; }
.benefit-grid p { margin: 0; color: #333; font-size: 14px; line-height: 20px; }

/* Full-bleed technology section, following the original section rhythm. */
.overview-section { position: relative; overflow: hidden; padding: 105px 0 120px; color: #fff; background: #142d32 url('../images/vamsoft/overview.webp') center calc(50% + var(--parallax-y, 0px)) / cover no-repeat; }
.overview-section::before { content: ""; position: absolute; inset: 0; background: rgba(5, 38, 44, .66); }
.overview-section::after { content: ""; position: absolute; z-index: 1; top: -10px; left: calc(50% + 90px); width: 1278px; height: 1200px; background: url('../images/vamsoft/overview-overlay.png') left top / 1278px 1200px no-repeat; pointer-events: none; }
.overview-section > .site-width { position: relative; z-index: 2; }
.overview-columns { width: min(1170px, calc(100% - 30px)); max-width: none; margin-inline: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 5fr)) minmax(0, 2fr); align-items: start; gap: 0; }
.overview-block { min-width: 0; max-width: none; margin: 0; padding-inline: 15px; }
.business-block { margin: 0; }
.section-label { margin: 0 0 10px; color: var(--cyan); font-size: 14px; font-weight: 700; text-transform: uppercase; }
.section-label.dark { color: #777; }
.overview-block > h2 { margin: 0 0 45px; font-size: 30px; line-height: 1.25; text-transform: uppercase; }
.overview-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.overview-grid article { min-width: 0; min-height: 160px; display: grid; grid-template-columns: 60px minmax(0, 1fr); align-items: start; gap: 20px; }
.overview-icon { width: 60px; height: 60px; display: block; border: 1px solid var(--cyan); border-radius: 50%; background: transparent; transform: scale(1); transition: background-color .38s ease, transform .38s cubic-bezier(.2,.8,.2,1), box-shadow .38s ease; }
.overview-icon::before { content: ""; width: 100%; height: 100%; display: block; background: var(--cyan); mask: url('../icons/pencil.svg') center / 28px 28px no-repeat; -webkit-mask: url('../icons/pencil.svg') center / 28px 28px no-repeat; transition: background-color .38s ease; }
.overview-grid article:hover .overview-icon { background: var(--cyan); transform: scale(1.08); box-shadow: 0 8px 22px rgba(21, 179, 221, .2); }
.overview-grid article:hover .overview-icon::before { background: #fff; }
.overview-grid h3 { margin: 10px 0; font-size: 16px; line-height: 22px; text-transform: uppercase; }
.overview-grid p { margin: 0 0 10px; color: #fff; font-size: 16px; line-height: 26px; }

.latest-news { padding: 60px 0; background: #fff; }
.latest-news header, .statistics-section header { display: flex; align-items: center; flex-direction: column; justify-content: center; gap: 7px; text-align: center; }
.latest-news header h2, .statistics-section header h2, .trial-section > .site-width > h2 { margin: 0; font-size: 42px; line-height: 1.15; text-transform: uppercase; }
.latest-news header > a, .statistics-section header > a { display: inline-flex; align-items: center; gap: 5px; font-size: 14px; line-height: 22px; text-decoration: none; }
.latest-news header span, .statistics-section header span { display: inline-flex; align-items: center; height: 22px; font-size: 20px; line-height: 1; }
.latest-news header::after, .statistics-section header::after { content: ""; width: 87px; height: 2px; margin-top: 11px; background: var(--cyan); }
.latest-news-grid { margin-top: 27px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }
.latest-news-grid article { min-width: 0; }
.latest-news-grid time { color: #999; font-size: 13px; }
.latest-news-grid time::before { content: ""; width: 12px; height: 12px; margin-right: 9px; display: inline-block; border: 2px solid #aaa; border-radius: 50%; vertical-align: -1px; }
.latest-news-grid h3 { margin: 7px 0 12px; font-size: 18px; line-height: 1.45; }
.latest-news-grid h3 a { color: #333; text-decoration: none; }
.latest-news-grid h3 a:hover { color: var(--cyan); }
.latest-news-grid p { margin: 0; color: #777; font-size: 14px; line-height: 1.75; overflow-wrap: anywhere; }

.counter-section { position: relative; min-height: 286px; padding: 60px 0; color: #fff; background: #0a343b url('../images/vamsoft/counter.webp') center calc(50% + var(--parallax-y, 0px)) / cover no-repeat; }
.counter-section::before { content: ""; position: absolute; inset: 0; background: rgba(4, 39, 45, .48); }
.counter-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; text-align: center; }
.counter-grid article { display: flex; flex-direction: column; }
.counter-icon { width: 50px; height: 50px; margin: 0 auto 30px; display: block; background: #fff; mask: var(--counter-icon) center / contain no-repeat; -webkit-mask: var(--counter-icon) center / contain no-repeat; }
.counter-icon-orders { --counter-icon: url('../icons/shopping-cart.svg'); }
.counter-icon-companies { --counter-icon: url('../icons/building-2.svg'); }
.counter-icon-countries { --counter-icon: url('../icons/earth.svg'); }
.counter-icon-code { --counter-icon: url('../icons/code-xml.svg'); }
.counter-grid strong { font-size: 35px; font-weight: 500; line-height: 1.1; }
.counter-grid strong.is-counting { color: var(--cyan); text-shadow: 0 0 18px rgba(21, 179, 221, .35); }
.counter-grid article > span:last-child { margin-top: 10px; font-size: 20px; line-height: 1.1; text-transform: uppercase; }

.trial-section { padding: 60px 0; text-align: center; background: #fff; }
.trial-section > .site-width > h2::after { content: ""; width: 87px; height: 2px; margin: 20px auto 0; display: block; background: var(--cyan); }
.trial-lead { width: 100%; max-width: none; margin: 15px auto 40px; color: #333; font-size: 24px; text-align: center; }
.download-panel { max-width: 750px; margin: 0 auto 5px; border: 1px solid #eee; background: #fff; }
.download-panel h3 { margin: 0 0 20px; padding: 30px 0; font-size: 26px; line-height: 1.1; text-transform: uppercase; background: #f1f1f1; }
.download-details > p { margin: 0 0 10px; padding: 0 20px; color: #333; font-size: 14px; line-height: 20px; }
.download-panel dl { margin: 0; }
.download-panel dl div { padding: 9px 20px; display: flex; justify-content: center; gap: 5px; border-top: 1px dotted #ddd; }
.download-panel dt { color: #333; }
.download-panel dd { margin: 0; font-weight: 700; }
.download-actions { padding: 35px 20px 40px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.download-actions a { min-height: 44px; padding: 0 30px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.download-button { min-width: 165px; color: #fff; background: #58c900; text-transform: uppercase; }
.download-button::after, .buy-button::after { content: ""; width: 14px; height: 14px; margin-left: 8px; display: inline-block; flex: 0 0 auto; background: #fff; mask: var(--action-icon) center / contain no-repeat; -webkit-mask: var(--action-icon) center / contain no-repeat; }
.download-button { --action-icon: url('../icons/download.svg'); }
.buy-button { min-width: 110px; color: #fff; background: var(--cyan); text-transform: uppercase; }
.buy-button { --action-icon: url('../icons/shopping-cart.svg'); }
.download-button:hover, .download-button:focus-visible, .buy-button:hover, .buy-button:focus-visible { color: #fff; filter: brightness(.94); }
.requirements-link { color: var(--cyan); }

.trial-download-content { width: min(970px, calc(100% - 48px)); max-width: none; padding: 48px 0 85px; }
.trial-download-intro { margin-bottom: 30px; font-size: 22px; text-align: center; }
.trial-download-intro p { margin: 0; }
.trial-version-card { padding-bottom: 40px; border: 1px solid #f1f1f1; background: #fff; }
.trial-version-details { padding: 40px 34px 0; background: transparent; text-align: center; }
.trial-version-details h2 { margin: 0; color: #333; font-size: 32px; font-weight: 400; line-height: 1.15; }
.trial-version-details > p { margin: 5px 0 24px; color: #666; }
.trial-version-details dl { margin: 0; display: grid; gap: 5px; }
.trial-version-details dl div { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.trial-version-details dt { color: #777; }
.trial-version-details dd { margin: 0; color: #333; font-weight: 700; }
.trial-version-actions { padding: 35px 34px 0; display: flex; align-items: center; justify-content: center; gap: 5px; }
.trial-version-actions > a { min-height: 44px; padding: 0 30px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.trial-version-actions .download-button { min-width: 165px; color: #fff; }
.trial-version-actions .buy-button { min-width: 111px; color: #fff; }
.trial-version-actions .download-button:hover, .trial-version-actions .download-button:focus-visible, .trial-version-actions .buy-button:hover, .trial-version-actions .buy-button:focus-visible { color: #fff; }
.trial-version-actions .requirements-link { min-height: 0; margin-left: 10px; padding: 0; color: var(--cyan); background: transparent; text-transform: none; }
.trial-resources { padding: 20px 0 0; }
.trial-resources > h2, .trial-registered > h2 { margin: 0 0 8px; color: #333; font-size: 24px; font-weight: 400; }
.trial-resources > p { margin: 0 0 18px; color: #555; }
.trial-resource-list { margin: 0; }
.trial-resource-list div { display: grid; grid-template-columns: 175px minmax(0, 1fr); align-items: baseline; }
.trial-resource-list dt, .trial-resource-list dd { margin: 0; }
.trial-resource-list dt { font-weight: 700; }
.trial-resource-list dd { color: #444; }
.trial-registered { margin: 28px 0 0; }
.trial-registered p { margin: 0; color: #555; }
.trial-section-divider { width: 76px; height: 0; margin: 35px auto 28px; border: 0; border-top: 2px solid var(--cyan); }
.trial-management > h2 { margin: 0; color: var(--cyan); font-size: 32px; font-weight: 400; }
.trial-management > p { margin: 12px 0 25px; color: #555; }
.trial-management-download { width: fit-content; min-height: 82px; display: grid; grid-template-columns: 62px minmax(0, 1fr); align-items: center; gap: 18px; color: #333; text-decoration: none; }
.trial-management-download:hover, .trial-management-download:focus-visible { color: #333; }
.trial-management-icon { width: 64px; height: 64px; display: block; background: url('../images/file-icon-exe.png') center / 64px 64px no-repeat; }
.trial-management-download strong, .trial-management-download small { display: block; }
.trial-management-download strong { color: var(--cyan); font-size: 18px; }
.trial-management-download small { margin-top: 4px; color: #777; font-size: 13px; }
.trial-management-note { margin-bottom: 0 !important; font-size: 13px; }

.testimonial-section { position: relative; min-height: 389px; padding: 60px 0; color: #fff; text-align: center; background: #17353b url('../images/vamsoft/testimonial.webp') center calc(50% + var(--parallax-y, 0px)) / cover no-repeat; }
.testimonial-section::before { content: ""; position: absolute; inset: 0; background: rgba(6, 37, 43, .5); }
.testimonial-section .site-width { position: relative; z-index: 1; }
.testimonial-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px; text-align: left; }
.testimonial-columns figure { margin: 0; }
.testimonial-section blockquote { margin: 0 0 18px; font-size: 16px; line-height: 30px; }
.testimonial-section figcaption { color: #b7b7b7; font-size: 14px; }
.testimonial-slider { min-height: 209px; }
.testimonial-item { position: absolute; inset: 0 0 auto; opacity: 0; visibility: hidden; transform: translate3d(25px, 0, 0); transition: opacity .55s ease, transform .55s ease, visibility .55s; }
.testimonial-item.is-active { position: relative; opacity: 1; visibility: visible; transform: translate3d(0, 0, 0); }
.testimonial-dots { margin-top: 24px; display: flex; justify-content: center; gap: 10px; }
.testimonial-dot { width: 15px; height: 15px; padding: 0; border: 0; border-radius: 50%; background: var(--cyan); opacity: .5; }
.testimonial-dot.is-active { background: var(--cyan); opacity: 1; }

.statistics-section { padding: 60px 0 90px; background: #fff; }
.statistics-panel { max-width: 900px; margin: 44px auto 0; padding: 24px 25px 28px; background: #f1f1f1; text-align: left; }
.statistics-panel > p { margin: 0 0 24px; color: #333; line-height: 1.55; }
.statistics-values { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.statistics-values article { display: flex; flex-direction: column; }
.statistics-values article:last-child { text-align: right; }
.statistics-values strong { color: var(--cyan); font-size: 42px; font-weight: 400; line-height: 1.2; }
.statistics-values article:last-child strong { color: #ff5a00; }
.statistics-values span { margin-bottom: 4px; color: #333; font-size: 19px; font-weight: 700; }
.statistics-home-unavailable { margin: 0 !important; color: #777 !important; font-weight: 700; }
.spam-statistics-page { width: min(1170px, calc(100% - 30px)); padding: 45px 15px 95px; color: #333; }
.statistics-unavailable { padding: 40px 30px; border: 1px solid #ddd; background: #f8f8f8; }
.statistics-unavailable h2 { margin: 0 0 10px; font-size: 28px; }
.statistics-unavailable p { margin: 0; }
.statistics-summary { margin-bottom: 25px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: end; gap: 30px; }
.statistics-summary article { min-width: 0; display: flex; flex-direction: column; }
.statistics-summary article:nth-child(2) { text-align: right; }
.statistics-summary span { color: #333; font-size: 19px; font-weight: 700; }
.statistics-summary strong { color: var(--cyan); font-size: 42px; font-weight: 400; line-height: 1.2; }
.statistics-summary article:nth-child(2) strong { color: #ff5a00; }
.statistics-chart { margin: 0; }
.statistics-chart svg { width: 100%; height: auto; aspect-ratio: 1140 / 300; display: block; overflow: visible; }
.statistics-chart-grid { stroke: #e4e4e4; stroke-width: 1; }
.statistics-chart-area { fill: rgba(21, 179, 221, .22); }
.statistics-chart-line { fill: none; stroke: var(--cyan); stroke-width: 3; stroke-linejoin: round; stroke-linecap: round; }
.statistics-chart-y-label, .statistics-chart-x-label { fill: #777; font: 12px Poppins, "Microsoft YaHei", sans-serif; }
.statistics-rankings { margin-top: 48px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.statistics-rankings h2, .statistics-announcements h2 { margin: 0 0 16px; color: #333; font-size: 25px; font-weight: 500; line-height: 1.2; }
.statistics-ranking-table { width: 100%; border-collapse: collapse; table-layout: fixed; font-size: 14px; }
.statistics-ranking-table th { padding: 8px 10px; color: #fff; background: var(--cyan); font-weight: 500; text-align: left; }
.statistics-ranking-table th:first-child { width: 55px; text-align: center; }
.statistics-ranking-table th:last-child { width: 70px; text-align: right; }
.statistics-ranking-table td { padding: 9px 10px; vertical-align: top; }
.statistics-ranking-table td:last-child { text-align: right; }
.statistics-rank { color: #777; font-size: 18px; text-align: center; }
.statistics-ranking-table td > strong { overflow-wrap: anywhere; }
.statistics-popularity { height: 5px; margin-top: 6px; display: block; background: #e4e4e4; }
.statistics-popularity i { height: 100%; display: block; background: var(--cyan); }
.grading-level { height: 8px; margin-top: 5px; display: block; background: url('../images/vamsoft/recommended-dot.png') left top repeat-x; }
.stat-grading-level-0 { width: 8px; background: url('../images/vamsoft/recommended-not-dot.png') left top no-repeat; }
.stat-grading-level-1 { width: 8px; }
.stat-grading-level-2 { width: 20px; }
.stat-grading-level-3 { width: 32px; }
.statistics-ranking-table .grading-level { float: right; }
#bl-stat-legend { margin-top: 20px; padding: 15px; border: 1px solid #eaeaea; border-radius: 5px; color: #777; background: #f2f2f2; font: 11px/16.5px Arial, "Microsoft YaHei", sans-serif; }
#bl-stat-legend table { width: 100%; border-collapse: collapse; }
#bl-stat-legend td { padding: 4px; border: 0; vertical-align: top; }
#bl-stat-legend td.key { width: 46px; padding-right: 10px; text-align: right; }
#bl-stat-legend td.key .grading-level { float: right; }
.pop-legend-percent { float: right; font-size: 8.8px; }
.pop-legend-container { width: 32px; height: 4px; margin-top: 15px; clear: both; background: #fff; }
.pop-legend-container .value { width: 42%; height: 4px; background: #0caedc; }
.statistics-announcements { margin-top: 50px; }
.statistics-announcements ul { margin: 0; padding: 0; list-style: none; }
.statistics-announcements li { padding: 12px 0; display: grid; grid-template-columns: 105px minmax(0, 1fr); gap: 15px; }
.statistics-announcements time { color: var(--cyan-dark); font-size: 13px; font-weight: 700; }
.statistics-announcements span { color: #555; overflow-wrap: anywhere; }
.ready-section { padding: 0 0 60px; text-align: center; background: #fff; }
.ready-section > .site-width { width: min(1140px, calc(100% - 30px)); max-width: 1140px; padding: 12px 20px; background: #f2f2f2; }
.ready-section p { margin: 4px 0; color: #444; font-size: 17px; line-height: 1.45; }
.ready-section a { color: var(--cyan-dark); }

/* Interior content pages use the same photographic masthead. */
.page-hero { min-height: 310px; margin-top: -60px; padding: 131px 0 55px; color: #fff; background: #073038 url('../images/vamsoft/header.webp') left top / 150% auto no-repeat; }
.page-hero h1 { max-width: 900px; margin: 0; font-size: 42px; line-height: 1.15; }
.page-hero p:not(.section-kicker) { max-width: 760px; margin: 13px 0 0; color: #d9e9eb; font-size: 17px; }
.section-kicker { margin: 0 0 8px; color: var(--cyan); font-size: 13px; font-weight: 700; text-transform: uppercase; }
.content-page { min-height: 420px; padding: 75px 0 100px; color: #444; font-size: 16px; }
.content-page > * { max-width: 900px; }
.content-page h2 { margin: 48px 0 14px; color: #333; font-size: 30px; line-height: 1.3; }
.content-page h2:first-child { margin-top: 0; }
.content-page h3 { margin-top: 35px; font-size: 22px; }
.content-page a { color: var(--cyan-dark); text-underline-offset: 3px; }
.content-page table { width: 100%; margin: 28px 0; border-collapse: collapse; }
.content-page th, .content-page td { padding: 13px 15px; border: 1px solid #ddd; text-align: left; }
.content-page th { color: #fff; background: #24505a; }
.content-page tbody tr:nth-child(even) { background: #f5f5f5; }
.independent-content { width: min(970px, calc(100% - 48px)); max-width: none; padding: 58px 0 90px; color: #3f494b; font-size: 16px; line-height: 1.8; }
.independent-content > * { max-width: 860px; margin-right: 0; margin-left: 0; }
.independent-page .product-hero h1.long-title { padding-inline: 20px; font-size: 36px; }
.independent-page .product-breadcrumb { flex-wrap: nowrap; }
.independent-page .product-breadcrumb li:first-child { flex: 0 0 auto; white-space: nowrap; }
.independent-page .product-breadcrumb li:last-child { min-width: 0; flex: 1 1 auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.independent-content h2 { margin-top: 52px; padding-bottom: 12px; border-bottom: 1px solid #dce5e7; color: #253b40; font-size: 29px; }
.independent-content h3 { margin-top: 32px; color: #253b40; font-size: 21px; }
.independent-content ul, .independent-content ol { padding-left: 26px; }
.independent-content li { margin: 8px 0; }
.independent-content li::marker { color: var(--cyan-dark); font-weight: 700; }
.independent-content blockquote { margin-top: 28px; padding: 18px 22px; border-left: 4px solid var(--cyan); color: #385158; background: #eef8fa; }
.independent-content img { max-width: 100%; height: auto; }

/* Product pages retain the migrated CN content while presenting it in the current vamsoft.com structure. */
.product-page .page-hero { min-height: 330px; padding-top: 125px; background-size: 175% auto; }
.product-page .page-hero h1 { max-width: 1000px; text-transform: uppercase; }
.product-breadcrumb { margin: 0 0 18px !important; display: flex; align-items: center; flex-wrap: wrap; gap: 9px; color: #b9c9cc !important; font-size: 13px !important; text-transform: uppercase; }
.product-breadcrumb a { color: #fff; text-decoration: none; }
.product-breadcrumb a:hover { color: var(--cyan); }
.product-switcher { border-bottom: 1px solid #e3e8e9; background: #fff; }
.product-switcher .site-width { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.product-switcher a { min-width: 0; min-height: 112px; padding: 23px 18px 20px; display: flex; flex-direction: column; border-bottom: 3px solid transparent; color: #555; text-decoration: none; transition: color .2s, border-color .2s, background-color .2s; }
.product-switcher a:hover, .product-switcher a:focus-visible { color: var(--cyan-dark); background: #f7fbfc; }
.product-switcher a.is-active { border-bottom-color: var(--cyan); color: #222; background: #f7fbfc; }
.product-switcher strong { font-size: 16px; text-transform: uppercase; }
.product-switcher span { margin-top: 5px; color: #7a8588; font-size: 12px; line-height: 1.45; }
.product-content { max-width: 1140px; padding: 80px 0 95px; color: #424b4d; font-size: 16px; line-height: 1.7; }
.product-content > h2 { margin: 70px 0 38px; font-size: 32px; text-align: center; text-transform: uppercase; }
.product-content > h2:first-child { margin-top: 0; }
.product-content > h2::after { content: ""; width: 86px; height: 2px; margin: 17px auto 0; display: block; background: var(--cyan); }
.product-content > h3 { margin-top: 50px; }
.product-content table { max-width: none; border: 0; }
.product-content th, .product-content td { border-color: #e0e6e7; }

.product-highlight-table { display: block; }
.product-highlight-table thead, .product-highlight-table tbody { display: block; }
.product-highlight-table tr { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px; background: transparent !important; }
.product-highlight-table th { padding: 0 0 24px; border: 0; color: #333; background: transparent; }
.product-highlight-table th h2 { margin: 0; font-size: 28px; text-align: left; text-transform: uppercase; }
.product-highlight-table td { position: relative; min-height: 185px; padding: 24px 0 30px 82px; border: 0; border-top: 1px solid rgba(255,255,255,.18); background: transparent; }
.product-highlight-table td::before { content: ""; position: absolute; top: 28px; left: 0; width: 58px; height: 58px; border: 1px solid var(--cyan); border-radius: 50%; }
.product-highlight-table td::after { content: ""; position: absolute; top: 45px; left: 17px; width: 25px; height: 25px; background: var(--cyan); mask: url('../icons/pencil.svg') center / contain no-repeat; -webkit-mask: url('../icons/pencil.svg') center / contain no-repeat; }
.product-highlight-table h3 { margin: 0 0 9px; color: #333; font-size: 17px; text-transform: uppercase; }
.product-highlight-table p { margin: 0; color: #667174; }

.feature-index { margin-bottom: 75px; padding: 35px 38px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 35px; background: #f2f5f6; }
.feature-index > div:empty { display: none; }
.feature-index h4 { margin: 0 0 12px; color: #24383c; font-size: 16px; text-transform: uppercase; }
.feature-index ul { margin: 0 0 24px; padding: 0; list-style: none; }
.feature-index li { margin: 7px 0; }
.feature-index a { color: #647276; font-size: 14px; text-decoration: none; }
.feature-index a::before { content: "↓"; margin-right: 8px; color: var(--cyan); font-weight: 700; }
.feature-index a:hover { color: var(--cyan-dark); }
.feature-detail { position: relative; min-height: 150px; padding: 30px 0 35px 88px; border-bottom: 1px solid #e1e6e7; scroll-margin-top: 80px; }
.feature-detail::before { content: "+"; position: absolute; top: 34px; left: 0; width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid var(--cyan); border-radius: 50%; color: var(--cyan); font-size: 26px; line-height: 1; }
.feature-detail h3 { margin: 0 0 10px; color: #2a3639; font-size: 18px; text-transform: uppercase; }
.feature-detail p { margin: 0 0 10px; color: #667174; }
.feature-detail > a:last-child { color: var(--cyan); text-decoration: none; }

.product-benefits .product-content > div:first-child { margin-bottom: 40px; padding: 40px 0 0; border: 1px solid #ddd; background: #f8f8f8; }
.product-benefits .product-content > div:first-child > h2 { margin: 0 0 30px; padding: 0 25px 30px; border-bottom: 1px dotted #ccc; color: #555; font-size: 34px; font-weight: 400; text-align: center; }
.benefit-list { width: 100%; margin: 0 !important; display: table; }
.benefit-list tbody { display: table-row-group; }
.benefit-list tr { display: table-row; background: transparent !important; }
.benefit-list td { padding: 20px 0; border: 0; border-bottom: 1px dotted #ccc; background: transparent; vertical-align: top; }
.benefit-list tr:last-child td { border-bottom: 0; }
.benefit-list td:first-child { width: 124px; padding-inline: 40px; color: #ccc; font-size: 80px; font-weight: 400; line-height: 1; text-align: center; text-shadow: 1px 1px 1px #fff; }
.benefit-list td:last-child { padding-right: 80px; }
.benefit-list h3 { margin: 7px 0 10px; color: #0caedc; font-size: 24px; font-weight: 400; text-transform: none; }
.benefit-list p { margin: 0; color: #333; font-size: 16px; line-height: 26px; }

.product-screenshots .product-content > h3 { margin: 65px 0 8px; font-size: 27px; text-align: left; text-transform: uppercase; }
.product-screenshots .product-content > h3:first-child { margin-top: 0; }
.product-screenshots .product-content > h3 + p { max-width: 780px; margin: 0 0 30px; color: #697477; text-align: left; }
.screenshot-gallery { margin: 28px 0 50px !important; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px 20px; }
.screenshot-gallery tbody, .screenshot-gallery tr { display: contents; }
.screenshot-gallery + h3 { margin-top: 75px !important; }
.screenshot-gallery td { padding: 0; border: 0; background: transparent; }
.screenshot-gallery a { height: 100%; padding: 10px 10px 0; display: flex; flex-direction: column; border: 1px solid #ddd; color: #333; background: #f8f8f8; text-align: center; text-decoration: none; transition: border-color .2s, box-shadow .2s; }
.screenshot-gallery img { width: 100%; aspect-ratio: 1.36 / 1; display: block; border: 1px solid #bbb; background: #fff; object-fit: cover; object-position: top left; }
.screenshot-gallery span { min-height: 52px; padding: 7px 3px; display: grid; place-items: center; color: #333; font: 12px/18px Arial, "Microsoft YaHei", sans-serif; }
.screenshot-gallery a:hover { border-color: #999; box-shadow: 0 0 10px #ccc; }
.screenshot-gallery a:hover span { color: #777; }
.screenshot-lightbox { width: min(920px, calc(100vw - 48px)); max-width: calc(100vw - 48px); height: min(730px, calc(100vh - 48px)); max-height: calc(100vh - 48px); padding: 0; overflow: hidden; border: 1px solid #bbb; background: #f8f8f8; box-shadow: 0 12px 45px rgba(0,0,0,.5); }
.screenshot-lightbox::backdrop { background: rgba(0,0,0,.6); }
.screenshot-lightbox-frame { position: relative; width: 100%; height: 100%; padding: 10px 10px 38px; display: grid; place-items: center; }
.screenshot-lightbox figure { width: 100%; height: 100%; min-width: 0; min-height: 0; margin: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto; place-items: center; gap: 6px; }
.screenshot-lightbox img { min-width: 0; min-height: 0; max-width: 100%; max-height: 100%; display: block; object-fit: contain; background: #fff; }
.screenshot-lightbox figcaption { width: 100%; min-height: 20px; overflow: hidden; color: var(--cyan); font-size: 12px; line-height: 18px; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.screenshot-lightbox button { position: absolute; z-index: 2; bottom: 5px; width: 26px; height: 26px; padding: 0; display: grid; place-items: center; border: 1px solid #bbb; border-radius: 0; color: #777; background: #fff; font: 400 22px/1 Arial, sans-serif; transition: color .2s, border-color .2s, background-color .2s; }
.screenshot-lightbox button:hover, .screenshot-lightbox button:focus-visible { border-color: var(--cyan); color: #fff; background: var(--cyan); }
.screenshot-lightbox-close { right: 10px; }
.screenshot-lightbox-previous { left: 10px; }
.screenshot-lightbox-next { left: 42px; }

.product-pricing .pricing-section-title { margin: 20px 0 25px; color: var(--cyan); font-size: 34px; font-weight: 400; }
.pricing-offer { min-height: 300px; margin: 0 0 55px; padding: 42px 0 42px 50px; display: grid; grid-template-columns: minmax(0, 66%) minmax(0, 34%); align-items: center; overflow: hidden; border: 0; background: #fff; }
.pricing-offer-copy { position: relative; z-index: 1; min-width: 0; }
.pricing-offer-copy h2 { margin: 0; color: #222; font-size: 26px; font-weight: 400; line-height: 1.15; white-space: nowrap; }
.pricing-offer-copy > p { margin: 5px 0 20px; color: #333; font-size: 16px; }
.pricing-offer-copy ul { margin: 0 0 28px; padding: 0; list-style: none; }
.pricing-offer-copy li { margin: 7px 0; color: #333; font-size: 16px; }
.pricing-offer-copy li::before { content: "+"; margin-right: 8px; color: var(--cyan); font-weight: 700; }
.pricing-offer-copy > a { min-width: 180px; min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: #68c014; font-size: 14px; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.pricing-offer-copy > a:hover { color: #fff; background: #70d016; }
.pricing-offer-copy > a span { margin-left: 6px; }
.pricing-offer-visual { height: 250px; align-self: stretch; overflow: hidden; transform: rotate(-5deg) translate(24px, 8px); transform-origin: center; }
.pricing-offer-visual img { width: 132%; height: 100%; display: block; border: 1px solid #d8d8d8; background: #fff; object-fit: cover; object-position: left top; }
.pricing-offer-line { width: 70px; height: 2px; margin: 30px auto; border: 0; border-top: 2px solid var(--cyan); }
.pricing-summary { margin: 0 0 25px !important; table-layout: fixed; }
.pricing-summary tr { height: 52px; background: transparent !important; }
.pricing-summary tr:first-child { height: 65px; }
.pricing-summary td { height: 52px; padding: 0 20px; border: 1px solid #ddd; color: #333; background: #fff; vertical-align: middle; }
.pricing-summary td:first-child { width: 30%; padding: 0 20px; color: #333; background: #f6f6f6; font-size: 16px; font-weight: 700; }
.pricing-summary td:last-child { text-align: center; }
.pricing-summary tr:first-child td { border-bottom: 4px solid #777; }
.pricing-summary tr:last-child td { border-bottom: 2px solid #aaa; }
.pricing-summary td > span { display: inline-block; border-bottom: 1px dashed #aaa; }
.pricing-summary .pricing-hint { position: relative; }
.pricing-summary .pricing-hint > span { cursor: help; }
.pricing-summary .pricing-hint-popup { position: absolute; z-index: 25; top: calc(50% + 18px); left: 50%; width: min(390px, calc(100vw - 40px)); padding: 16px 18px; display: block; border: 1px solid #8fd5e7; color: #333; background: #dff6fb; box-shadow: 0 4px 14px rgba(0, 0, 0, .15); font-size: 13px; line-height: 20px; text-align: left; opacity: 0; visibility: hidden; transform: translate(-50%, 5px); pointer-events: none; }
.pricing-summary .pricing-hint-popup > div:first-child { position: absolute; top: -7px; left: 50%; width: 12px; height: 12px; border-top: 1px solid #8fd5e7; border-left: 1px solid #8fd5e7; background: #dff6fb; transform: translateX(-50%) rotate(45deg); }
.pricing-summary .pricing-hint-popup p { margin: 0 0 8px; color: #333; }
.pricing-summary .pricing-hint-popup p:last-child { margin-bottom: 0; }
.pricing-summary .pricing-hint:hover .pricing-hint-popup, .pricing-summary .pricing-hint:focus-within .pricing-hint-popup, .pricing-summary .pricing-hint > span:focus + .pricing-hint-popup { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.pricing-summary h3 { margin: 0; font-size: 20px; line-height: 50px; }
.pricing-summary-price > span:first-child { margin-right: 4px; display: inline-block; color: #333; font-size: 16px; line-height: inherit; }
.pricing-summary-price > span:first-child strong { font-weight: 700; }
.pricing-summary-price > a { margin-left: 8px; padding: 4px 9px; display: inline-block; color: #fff; background: var(--cyan); font-size: 12px; font-weight: 700; line-height: 18px; text-decoration: none; }
.pricing-summary-price > a:hover { color: #fff; background: #44c9ee; }
.pricing-actions { margin: 0 0 55px; display: grid; grid-template-columns: minmax(0, 1fr) 145px 145px; grid-template-rows: repeat(2, minmax(24px, auto)); column-gap: 5px; align-items: center; }
.pricing-actions > div { min-width: 0; grid-row: 1 / 3; }
.pricing-actions > div:first-of-type { grid-column: 2; }
.pricing-actions > div:nth-of-type(2) { grid-column: 3; }
.pricing-actions > div > a { min-height: 48px; padding: 0 22px; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; white-space: nowrap; }
.pricing-actions .pricing-trial { background: var(--cyan); }
.pricing-actions .pricing-trial:hover { background: #44c9ee; }
.pricing-actions .pricing-buy { background: #68c014; }
.pricing-actions .pricing-buy:hover { background: #70d016; }
.pricing-actions > span { grid-column: 1; color: var(--cyan); font-size: 13px; line-height: 19px; }
.pricing-actions > span:first-of-type { grid-row: 1; }
.pricing-actions > span:nth-of-type(2) { grid-row: 2; }
.product-pricing .product-content > h3 { margin: 0 0 22px; color: #333; font-size: 24px; font-weight: 700; }
.pricing-grid th { color: #fff; background: var(--cyan); }
.pricing-table-wrap { width: min(555px, 100%); margin: 0 auto 55px; }
.pricing-grid { margin: 0 !important; border: 1px solid #d8e0e2 !important; }
.pricing-grid th, .pricing-grid td { padding: 12px 18px; border-color: #d8e0e2; text-align: center; }
.pricing-grid tbody tr:nth-child(even) { background: #f2f6f7; }
.product-pricing #fusion-pricing, .product-pricing #faq-licensing { scroll-margin-top: 80px; }
.product-pricing #faq-licensing { margin: 0 0 20px; padding: 0; border: 0; color: var(--cyan); font-size: 34px; font-weight: 400; }
.product-faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.product-faq-grid > div { min-width: 0; }
.product-faq-grid h3 { margin: 30px 0 9px; color: #333; font-size: 18px; font-weight: 700; }
.product-faq-grid > div > h3:first-child { margin-top: 0; }
.product-faq-grid h3[id] { scroll-margin-top: 80px; }
.product-faq-grid p, .product-faq-grid li { color: #333; }
.product-faq-grid li::marker { color: var(--cyan); }

.order-navigation-summary { width: 100%; margin: 0 0 15px; padding-inline: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.order-navigation-summary a { min-height: 137px; padding: 15px; display: block; color: #333; text-decoration: none; }
.order-navigation-summary a:hover, .order-navigation-summary a:focus-visible { background: #f1f1f1; }
.order-navigation-summary strong { display: inline-block; margin: 0 8px 0 0; font-size: 24px; font-weight: 500; }
.order-navigation-summary i { padding: 2px 5px; display: inline-block; color: #fff; background: #77d021; font-size: 11px; font-style: normal; line-height: 16px; text-transform: uppercase; }
.order-navigation-summary span { margin-top: 10px; display: block; color: #555; font-size: 14px; line-height: 21px; }
.order-content { min-height: 0; padding: 35px 0 70px; color: #333; font-size: 15px; line-height: 24px; }
.order-content > * { max-width: none; }
.order-content .order-intro { margin: 0 0 42px; }
.order-content .order-section-title { margin: 0 0 15px; color: var(--cyan); font-size: 24px; font-weight: 700; }
.order-content #order-process, .order-content #order-downloads { scroll-margin-top: 80px; }
.order-process-lead { margin-bottom: 15px; }
.order-process-table { margin: 0 0 35px !important; border: 0; }
.order-process-table tr { background: transparent !important; }
.order-process-table td { padding: 12px 0; border: 0; border-bottom: 1px dotted #ddd; vertical-align: top; }
.order-process-table td:first-child { width: 42px !important; padding-right: 12px; color: var(--cyan); font-size: 20px; font-weight: 700; text-align: center; }
.order-process-table ul { margin: 4px 0; padding-left: 20px; }
.order-download-link { margin: 5px 5px 5px 0; padding: 8px 15px; display: inline-flex; align-items: center; color: #fff !important; background: var(--cyan); font-size: 13px; line-height: 20px; text-decoration: none; }
.order-download-link:hover, .order-download-link:focus-visible { color: #fff !important; background: #44c9ee; }
.order-notes { margin: 12px 0 45px; padding-left: 28px; }
.order-notes li { margin-bottom: 16px; }
.order-notes li::marker { color: var(--cyan); }
.order-contact { padding: 28px 30px; border: 1px solid #ddd; background: #f8f8f8; }
.order-contact h3 { margin: 0 0 16px; color: #333; font-size: 20px; }

.site-width.customer-service-content { width: min(970px, calc(100% - 30px)); max-width: none; padding: 0 0 85px; font-size: 16px; line-height: 25.6px; }
.customer-service-content > * { max-width: none; }
.customer-service-banner { width: min(880px, calc(100% - 30px)); height: auto; margin: 0 auto 30px; display: block; }
.customer-service-intro { margin: 0 15px 30px; }
.customer-service-columns { display: flex; align-items: flex-start; }
.customer-service-columns > section { min-width: 0; padding: 0 15px; flex: 0 0 50%; }
.customer-service-content .customer-service-table { width: 100%; margin: 0; border: 0; }
.customer-service-content .customer-service-table tr { background: transparent; }
.customer-service-content .customer-service-table tbody tr:nth-child(even) { background: transparent; }
.customer-service-content .customer-service-table td { border: 0; background: transparent; vertical-align: top; }
.customer-service-content .customer-contact-group { padding: 0 0 10px; }
.customer-service-content .customer-contact-group h2, .customer-service-content .customer-contact-group h3 { margin: 20px 0 10px; color: var(--cyan); font-size: 30px; font-weight: 400; line-height: 33px; }
.customer-contact-nature { display: block; color: #555; }
.customer-service-content .customer-contact-label { width: 42%; padding: 0 15px 10px 0; font-weight: 400; white-space: nowrap; }
.customer-service-content .customer-contact-value { padding: 0 0 10px; color: #333; }
.customer-service-content .customer-service-table a { text-decoration: none; }
.customer-service-tip-link { padding: 0 0 10px !important; }
.customer-service-tip-link a { width: 90.5%; min-height: 54px; display: inline-flex; align-items: center; padding: 0 18px; border: 1px solid #ccc; color: #484848; background: #f2f2f2; text-decoration: none; }
.customer-support-dialog { width: min(720px, calc(100vw - 30px)); max-width: 720px; max-height: calc(100vh - 30px); padding: 38px 40px 58px; overflow: auto; border: 1px solid #ddd; border-radius: 8px; color: #444; background: #fff; box-shadow: 0 8px 30px rgba(0, 0, 0, .35); font-size: 16px; line-height: 25.6px; }
.customer-support-dialog::backdrop { background: rgba(0, 0, 0, .58); }
.customer-support-dialog > h3 { margin: 0 0 16px; color: var(--cyan); font-size: 30px; font-weight: 400; line-height: 1.2; }
.customer-support-dialog > p { margin: 0 0 18px; }
.customer-support-dialog > ol { margin: 0; padding-left: 28px; }
.customer-support-dialog > ol li { margin: 0 0 16px; padding-left: 5px; }
.customer-support-dialog-close { position: absolute; right: 20px; bottom: 14px; padding: 0; display: inline-flex; align-items: center; gap: 8px; border: 0; color: var(--cyan); background: transparent; font: 700 13px/28px Poppins, "Microsoft YaHei", sans-serif; text-transform: uppercase; }
.customer-support-dialog-close i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--cyan); font: 700 22px/1 Arial, sans-serif; }

.knowledge-base-layout { width: min(1170px, calc(100% - 30px)); display: grid; grid-template-columns: minmax(0, 1fr) max-content; gap: 30px; align-items: start; }
.knowledge-base-content { min-width: 0; padding: 15px 0 85px; font-size: 16px; line-height: 25.6px; }
.knowledge-base-content > * { max-width: none; }
.knowledge-base-search { margin: 0 0 32px; padding: 20px; background: #f1f1f1; }
.knowledge-base-search h2 { margin: 0 0 14px; color: #333; font-size: 24px; font-weight: 400; }
.knowledge-base-search label { display: block; margin-bottom: 6px; color: #555; font-size: 14px; }
.knowledge-base-search form > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 5px; }
.knowledge-base-search input { min-width: 0; min-height: 44px; padding: 9px 12px; border: 1px solid #ccc; color: #333; background: #fff; font: inherit; }
.knowledge-base-search input:focus, .knowledge-base-search input:focus-visible { outline: 0; border-color: #ccc; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); }
.knowledge-base-search button { min-width: 110px; min-height: 44px; padding: 0 24px; border: 0; color: #fff; background: var(--cyan); font: 700 14px/1 Poppins, "Microsoft YaHei", sans-serif; }
.knowledge-base-featured > h2, .knowledge-base-popular > h2 { margin: 28px 0 10px; color: #333; font-size: 30px; font-weight: 400; }
.knowledge-base-featured .knowledge-base-articles { padding: 20px; border: 1px solid #ddd; background: #f6f6f6; }
.knowledge-base-article { position: relative; min-height: 125px; padding: 20px 105px 22px 0; border-bottom: 1px solid #ddd; }
.knowledge-base-article h3 { margin: 0 0 5px; display: grid; grid-template-columns: 15px minmax(0, 1fr); align-items: start; gap: 5px; font-size: 20px; font-weight: 400; line-height: 1.35; }
.knowledge-base-article h3 > span { width: 15px; height: 18px; margin-top: 1px; display: block; background: var(--cyan); mask: url('../icons/arrow-right.svg') center / 15px 15px no-repeat; -webkit-mask: url('../icons/arrow-right.svg') center / 15px 15px no-repeat; font-size: 0; }
.knowledge-base-article h3 a { color: #333; text-decoration: none; }
.knowledge-base-article h3 a:hover, .knowledge-base-article h3 a:focus-visible { color: var(--cyan); }
.knowledge-base-meta { margin: 0 0 8px; color: #777; font-size: 13px; line-height: 20px; }
.knowledge-base-extract { margin: 0; color: #555; }
.knowledge-base-read { position: absolute; top: 20px; right: 0; min-width: 82px; padding: 5px 10px; color: #fff !important; background: var(--cyan); font-size: 12px; font-weight: 700; line-height: 20px; text-align: center; text-decoration: none; text-transform: uppercase; }
.knowledge-base-read:hover, .knowledge-base-read:focus-visible { background: #44c9ee; }
.knowledge-base-sidebar { width: max-content; max-width: 100%; padding: 15px 0 80px; }
.knowledge-base-sidebar section { padding: 10px 15px; border: 1px solid #ddd; background: #f8f8f8; }
.knowledge-base-sidebar section:not(:last-child) { margin-bottom: -1px; }
.knowledge-base-sidebar h2 { margin: 0 0 12px; color: #333; font-size: 22px; font-weight: 400; }
.knowledge-base-sidebar p { margin: 0 0 12px; color: #555; font-size: 14px; }
.knowledge-base-sidebar a { margin-top: 13px; display: block; color: var(--cyan); text-decoration: none; }
.knowledge-base-sidebar strong, .knowledge-base-sidebar span { display: block; }
.knowledge-base-sidebar strong { font-size: 15px; }
.knowledge-base-sidebar span { max-width: 150px; margin-top: 3px; color: #666; font-size: 13px; line-height: 20px; }
.knowledge-base-sidebar section:first-child > a:first-of-type span { max-width: none; white-space: nowrap; }

.faq-layout { width: min(1170px, calc(100% - 30px)); display: grid; grid-template-columns: minmax(0, 1fr) max-content; gap: 30px; align-items: start; }
.faq-content { min-width: 0; padding: 15px 0 85px; font-size: 16px; line-height: 25.6px; scroll-margin-top: 80px; }
.faq-content > * { max-width: none; }
.faq-search { margin: 0 0 32px; padding: 20px; background: #f1f1f1; }
.faq-search h2 { margin: 0 0 10px; color: #333; font-size: 20px; font-weight: 700; line-height: 22px; }
.faq-search label { display: block; margin-bottom: 6px; color: #555; font-size: 14px; }
.faq-search form > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 5px; }
.faq-search input { min-width: 0; min-height: 44px; padding: 9px 12px; border: 1px solid #ccc; color: #555; background: #fff; font: 400 14px/20px Poppins, "Microsoft YaHei", sans-serif; }
.faq-search input:focus, .faq-search input:focus-visible { outline: 0; border-color: #ccc; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); }
.faq-search button { min-width: 110px; min-height: 44px; padding: 0 24px; border: 0; color: #fff; background: var(--cyan); font: 400 14px/20px Poppins, "Microsoft YaHei", sans-serif; }
.faq-index { display: block; }
.faq-index section { min-width: 0; }
.faq-index section > h2, .faq-answer-group > h2 { margin: 20px 0 10px; color: #333; font: 500 30px/33px Poppins, "Microsoft YaHei", sans-serif; }
.faq-index section > h2:first-child, .faq-answer-group > h2:first-child { margin-top: 20px; }
.faq-index ul { margin: 0 0 10px; padding: 0; list-style: none; }
.faq-index li { margin: 0; padding-left: 14px; }
.faq-index .fa { display: inline-block; margin-right: 6px; color: var(--cyan); font: normal normal 400 12px/1 FontAwesome; }
.faq-index .fa-arrow-right::before { content: "\f061"; }
.faq-index a { color: #484848; font: 400 17px/36px Poppins, "Microsoft YaHei", sans-serif; text-decoration: none; }
.faq-index a:hover, .faq-index a:focus-visible { color: var(--cyan); }
.faq-answers { margin-top: 50px; }
.faq-item { padding: 0; border: 0; scroll-margin-top: 80px; }
.faq-item > h3 { margin: 20px 0 10px; color: #333; font-size: 20px; font-weight: 500; line-height: 26.4px; }
.faq-answer { margin-top: 15px; color: #333; font-size: 20px; line-height: 28.5714px; }
.faq-answer h1 { margin: 37.5px 0 12.5px; color: var(--cyan); font-size: 20px; font-weight: 500; line-height: 25px; }
.faq-answer h2 { margin: 30px 0 10px; color: #484848; font-size: 16px; font-weight: 500; line-height: 20px; }
.faq-answer h3 { margin: 24px 0 8px; color: #484848; font-size: 15.5px; font-weight: 400; line-height: 16px; }
.faq-answer p { margin: 0 0 10px; color: #333; font-size: 20px; line-height: 28.5714px; overflow-wrap: anywhere; }
.faq-answer li { color: #333; font-size: 20px; line-height: 28.5714px; overflow-wrap: anywhere; }
.faq-answer ol, .faq-answer ul { margin: 0 0 10px; }
.faq-answer ul > li { padding-left: 20px; list-style: none; }
.faq-answer :is(ol.spacing-medium, ol.larger-spacing, ul.larger-spacing, ul.formatted.spacing-medium) > li { margin-bottom: 15px; }
.faq-answer a { color: var(--cyan); }
.faq-answer sup { font-size: 75%; line-height: 0; }
.faq-answer table { width: 100%; margin: 0; border-collapse: collapse; color: #333; font-size: 20px; line-height: 28.5714px; }
.faq-answer th, .faq-answer td { padding: 6px; border: 1px solid #e2e2e2; }
.faq-answer th { color: #fff; background: var(--cyan); font-size: 16px; font-weight: 400; line-height: 16px; }
.faq-answer td { color: #333; font-size: 20px; line-height: 28.5714px; }
.faq-answer tbody tr:nth-child(even) td { background: #f6f6f6; }
.faq-answer img { max-width: 100%; height: auto; }
.faq-answer pre, .faq-answer samp { max-width: 100%; margin: 0; padding: 10px; display: block; color: #333; background: #f2f2f2; font-size: 13px; line-height: 19.5px; white-space: pre-wrap; overflow-wrap: anywhere; }
.faq-answer code { padding: 2px 4px; color: #c7254e; background: #f9f2f4; font-size: 13px; line-height: 19.5px; white-space: normal; overflow-wrap: anywhere; }
.faq-back-to-index { display: none; }
.faq-sidebar { padding-top: 15px; }
.faq-sidebar h2 { margin: 5px 0 10px; font-size: 17px; font-weight: 700; line-height: 18.7px; }
.faq-sidebar a { margin-top: 10px; font-size: 13px; font-weight: 400; line-height: 18.5714px; }
.faq-sidebar strong { font-size: inherit; font-weight: 400; }
.faq-sidebar span, .faq-sidebar p { margin: 0; color: #333; font-size: 11.05px; line-height: 15.7857px; }
.faq-sidebar span { margin-top: 0; }

@media (min-width: 1201px) {
  .faq-index a { font-size: 12px; line-height: 25.2px; }
  .faq-answer, .faq-answer p, .faq-answer li, .faq-answer table, .faq-answer td { font-size: 14px; line-height: 20px; }
}

.how-to-layout { width: min(1170px, calc(100% - 30px)); display: grid; grid-template-columns: minmax(0, 1fr) max-content; gap: 30px; align-items: start; }
.how-to-content { min-width: 0; padding: 15px 0 85px; color: #333; }
.how-to-content > * { max-width: none; }
.how-to-tabs { margin: 0 0 20px; display: flex; flex-wrap: wrap; border-bottom: 1px solid #ddd; }
.how-to-tabs button { margin: 0 2px -1px 0; padding: 10px 15px; border: 1px solid transparent; border-radius: 4px 4px 0 0; color: var(--cyan); background: transparent; font: 400 14px/20px Poppins, "Microsoft YaHei", sans-serif; cursor: pointer; }
.how-to-tabs button[aria-selected="true"] { border-color: #ddd #ddd #fff; color: #555; background: #fff; }
.how-to-tabs button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.how-to-group[hidden] { display: none; }
.how-to-intro { margin: 0 0 24px; color: #333; font-size: 20px; line-height: 28.5714px; }
.how-to-group > h2 { margin: 30px 0 18px; color: #333; font: 500 20px/22px Poppins, "Microsoft YaHei", sans-serif; }
.how-to-entry { position: relative; margin: 0 0 28px; padding: 0; }
.how-to-entry h3 { margin: 0 0 4px; padding-right: 90px; color: var(--cyan); font: 700 17px/28.5714px Poppins, "Microsoft YaHei", sans-serif; }
.how-to-entry h3 a { color: inherit; text-decoration: none; }
.how-to-entry h3 a:hover, .how-to-entry h3 a:focus-visible { color: #44c9ee; }
.how-to-description { margin: 0; color: #333; font-size: 20px; line-height: 28.5714px; overflow-wrap: anywhere; }
.how-to-entry-guide:not(.is-featured), .how-to-entry-article { padding-left: 20px; background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGBAMAAAAS4vJ7AAAAG1BMVEUVs90oueD5/f6D1+0uu+GG2O0ruuB+1eyA1u07bn0tAAAAK0lEQVR4XhXGOw0AMAhAwdd06VgThBURKEAEAvD/AYZLDvHAuHzOmj80qwEYoQJIsC9h3QAAAABJRU5ErkJggg==") no-repeat 0 7px; }
.how-to-entry.is-featured { padding: 15px; border: 1px solid #eee; background: #f6f6f6; }
.how-to-entry.is-featured h3 { padding-right: 0; }
.how-to-featured { margin-left: 8px; padding: 2px 5px; display: inline-block; vertical-align: 2px; color: #fff; background: #ff5800; font-size: 11px; font-weight: 700; line-height: 15.7px; text-transform: uppercase; }
.how-to-file { margin: 0 0 4px; color: #777; font-size: 13px; line-height: 19px; }
.how-to-file code { padding: 0; color: inherit; background: transparent; font: inherit; }
.how-to-action { position: absolute; top: 0; right: 0; min-width: 82px; padding: 5px 10px; color: #fff !important; background: var(--cyan); font-size: 12px; font-weight: 700; line-height: 20px; text-align: center; text-decoration: none; text-transform: uppercase; }
.how-to-entry-guide .how-to-action, .how-to-entry-article .how-to-action { display: none; }
.how-to-entry-download { min-height: 104px; margin: 0; padding: 8px 105px 8px 92px; border-top: 1px solid #ddd; background: #f9f9f9; }
.how-to-entry-download:last-child { border-bottom: 1px solid #ddd; }
.how-to-entry-download::before { content: ""; position: absolute; top: 50%; left: 14px; width: 64px; height: 64px; transform: translateY(-50%); background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABABAMAAABYR2ztAAAAKlBMVEUAAACFkqWFkqWFkqWFkqWFkqXt8viFkqX///+cp7b29/iPm63P1+DP1uBR2AYsAAAABnRSTlMAEs7mScdrwFULAAAAp0lEQVRIx+3Q0QmDMAAE0IzgCtmh4ADukv632PvoAtIFnKET9KedoCN0mV4iBBL0AvohSA6RfDzuQoxPhzR9Y9K0yGIzABeD8Ls0BTDaHKQCT1ZI8BitnhhYoQEr5MTgKzRghZwIFRqwQk6ECg1YsTwxpS8BLEzErAOJLYHj3uELvCV4AXcJwG8jADYCnnYHxYf6AR8J3PnmKqigAp8Ws7lG0M2Dk2H+joBpwxsRd+gAAAAASUVORK5CYII=") center / 64px 64px no-repeat; }
.how-to-entry-download h3 { padding-right: 0; }
.how-to-entry-download .how-to-action { top: 50%; right: 10px; transform: translateY(-50%); }
.how-to-sidebar { padding-top: 15px; }
.how-to-sidebar h2 { margin: 5px 0 10px; font-size: 17px; font-weight: 700; line-height: 18.7px; }
.how-to-sidebar a { margin-top: 10px; font-size: 13px; font-weight: 400; line-height: 18.5714px; }
.how-to-sidebar strong { font-size: inherit; font-weight: 400; }
.how-to-sidebar span, .how-to-sidebar p { margin: 0; color: #333; font-size: 11.05px; line-height: 15.7857px; }

@media (min-width: 1201px) {
  .how-to-intro, .how-to-description { font-size: 14px; line-height: 20px; }
}

.about-us-content, .contact-us-content { width: min(1170px, calc(100% - 30px)); max-width: none; padding: 15px 15px 95px; color: #333; font-size: 14px; line-height: 20px; }
.about-us-content > *, .contact-us-content > * { max-width: none; }
.about-us-section { min-height: 150px; padding: 20px 0; display: grid; grid-template-columns: 160px minmax(0, 1fr); align-items: start; gap: 30px; }
.about-us-section img { max-width: 130px; margin: 0 auto; object-fit: contain; }
.about-us-section > div { min-width: 0; overflow-wrap: anywhere; }
.about-us-section a { overflow-wrap: anywhere; }
.about-us-section h2, .contact-us-content > h2 { margin: 0 0 10px; color: #333; font-size: 30px; font-weight: 500; line-height: 33px; }
.about-us-section p { margin: 0 0 10px; }
.about-us-section.about-us-demai { min-height: 128px; }
.about-us-section.about-us-vamsoft { min-height: 95px; }
.about-us-content .orf-line { margin: 20px 0; border: 0; border-top: 1px solid #ddd; }
.contact-us-illustration { width: 100%; height: 170px; margin: 0 0 25px; background: #f3f5f6 url('/legacy/images/illustrations/page-contact-us.jpg') center / cover no-repeat; }
.contact-us-intro { margin: 0 0 28px; }
.contact-us-intro a { color: var(--cyan); text-decoration: none; }
.contact-us-group { margin-bottom: 35px; }
.contact-us-group h2 { margin: 0 0 20px; color: #333; font-size: 20px; font-weight: 700; line-height: 22px; }
.contact-us-group address { display: grid; gap: 8px; font-style: normal; }
.contact-us-group a { color: var(--cyan); text-decoration: none; }

.product-cta { padding: 50px 0; color: #fff; background: #16373e; }
.product-cta > .site-width { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.product-cta p { margin: 0 0 3px; color: var(--cyan); font-size: 13px; font-weight: 700; text-transform: uppercase; }
.product-cta h2 { margin: 0; color: #fff; font-size: 27px; line-height: 1.25; }
.product-cta span { display: block; margin-top: 7px; color: #c2d0d2; font-size: 14px; }
.product-cta-actions { display: flex; flex: 0 0 auto; gap: 5px; }
.product-cta-actions a { min-height: 48px; padding: 0 27px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }

@media (max-width: 820px) {
  .product-switcher .site-width { width: 100%; display: flex; overflow-x: auto; }
  .product-switcher a { min-width: 145px; min-height: 94px; padding: 18px 15px 15px; }
  .product-content { padding-block: 60px 75px; }
  .pricing-offer { min-height: 0; padding: 35px 0 35px 30px; grid-template-columns: minmax(0, 66%) minmax(0, 34%); }
  .pricing-offer-copy h2 { font-size: 26px; }
  .product-highlight-table tr, .benefit-list tbody, .product-faq-grid { grid-template-columns: 1fr; gap: 22px; }
  .feature-index { grid-template-columns: 1fr; }
  .screenshot-gallery tr { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-cta > .site-width { align-items: flex-start; flex-direction: column; }
  .order-navigation-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .customer-service-columns { display: block; }
  .customer-service-columns > section { width: 100%; padding: 0 15px; }
  .customer-service-content .customer-service-table { table-layout: fixed; }
  .customer-service-content .customer-contact-label { width: 32%; white-space: normal; }
  .customer-service-content .customer-contact-value, .customer-service-content .customer-contact-value a { overflow-wrap: anywhere; }
  .customer-support-dialog { padding: 26px 20px 58px; }
  .customer-support-dialog > h3 { font-size: 27px; }
  .knowledge-base-layout { grid-template-columns: 1fr; }
  .knowledge-base-sidebar { justify-self: start; padding-top: 0; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { justify-self: start; padding-top: 0; }
  .how-to-layout { grid-template-columns: 1fr; }
  .how-to-sidebar { justify-self: start; padding-top: 0; }
  .statistics-summary { grid-template-columns: 1fr; gap: 18px; }
  .statistics-summary article:nth-child(2) { text-align: left; }
  .statistics-rankings { grid-template-columns: 1fr; gap: 45px; }
  .statistics-announcements li { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 520px) {
  .product-page .page-hero { min-height: 350px; padding-top: 115px; }
  .product-page .page-hero h1 { font-size: 34px; }
  .product-content > h2 { font-size: 28px; }
  .feature-index { padding: 27px 24px; }
  .feature-detail { padding-left: 72px; }
  .feature-detail::before { width: 48px; height: 48px; }
  .benefit-list tr { grid-template-columns: 56px minmax(0, 1fr); padding: 24px 20px; }
  .screenshot-gallery tr { grid-template-columns: 1fr; }
  .pricing-offer { margin-bottom: 40px; padding: 28px 5px; grid-template-columns: 1fr; }
  .pricing-offer-copy h2 { font-size: 16px; }
  .pricing-offer-visual { display: none; }
  .pricing-summary td:first-child { width: 105px; }
  .pricing-summary th, .pricing-summary td { padding: 12px 10px; }
  .trial-download-content { width: calc(100% - 30px); padding: 35px 0 60px; }
  .trial-download-intro { margin-bottom: 22px; font-size: 18px; text-align: left; }
  .trial-version-card { padding-bottom: 28px; }
  .trial-version-details { padding: 28px 22px 0; }
  .trial-version-details h2 { font-size: 27px; }
  .trial-version-details dl div { justify-content: space-between; }
  .trial-version-actions { padding: 24px 22px 0; flex-wrap: wrap; justify-content: flex-start; }
  .trial-version-actions > a { padding-inline: 22px; }
  .trial-version-actions .requirements-link { width: 100%; justify-content: flex-start; padding-inline: 0; }
  .trial-resources { padding-top: 5px; }
  .trial-resources > h2, .trial-management > h2 { font-size: 28px; }
  .trial-resource-list div { grid-template-columns: 90px minmax(0, 1fr); gap: 8px; }
  .trial-management-download { grid-template-columns: 64px minmax(0, 1fr); gap: 12px; }
  .product-cta-actions { width: 100%; flex-wrap: wrap; }
  .product-cta-actions a { flex: 1 1 145px; }
  .order-navigation-summary { grid-template-columns: 1fr; }
  .order-navigation-summary a { min-height: 0; }
  .order-content { padding-top: 25px; }
  .order-process-table tr { display: grid; grid-template-columns: 34px minmax(0, 1fr); }
  .order-contact { padding: 22px 18px; }
  .site-width.customer-service-content { width: calc(100% - 30px); padding: 0 0 60px; }
  .customer-service-banner { width: calc(100% - 30px); margin-bottom: 24px; }
  .customer-service-intro { margin-inline: 15px; }
  .knowledge-base-search form > div { grid-template-columns: 1fr; }
  .knowledge-base-search button { width: 100%; }
  .knowledge-base-article { padding-right: 0; }
  .knowledge-base-read { position: static; width: fit-content; margin-bottom: 10px; display: block; }
  .faq-search form > div { grid-template-columns: 1fr; }
  .faq-search button { width: 100%; }
  .how-to-tabs button { flex: 1 1 auto; }
  .how-to-entry h3 { padding-right: 0; }
  .how-to-entry-download { padding-right: 8px; padding-left: 82px; }
  .how-to-entry-download::before { left: 9px; }
  .how-to-entry-download .how-to-action { position: static; width: fit-content; margin-top: 10px; display: block; transform: none; }
  .about-us-content, .contact-us-content { font-size: 16px; line-height: 25.6px; }
  .about-us-section { padding: 18px 0; }
  .about-us-section { grid-template-columns: 80px minmax(0, 1fr); gap: 16px; }
  .about-us-section img { width: auto; max-width: 80px; height: auto; max-height: 160px; }
  .contact-us-illustration { height: auto; aspect-ratio: 880 / 150; }
  .spam-statistics-page { padding-top: 30px; }
  .statistics-summary { grid-template-columns: 1fr; gap: 18px; }
  .statistics-summary article:nth-child(2) { text-align: left; }
  .statistics-summary strong { font-size: 34px; }
  .statistics-chart svg { min-height: 180px; }
  .statistics-chart-x-label { font-size: 10px; }
  .statistics-rankings { grid-template-columns: 1fr; gap: 45px; }
  .statistics-announcements li { grid-template-columns: 1fr; gap: 4px; }
}
.news-layout { width: min(1170px, calc(100% - 30px)); min-height: 420px; padding: 15px; display: grid; grid-template-columns: minmax(0, 3fr) minmax(210px, 1fr); gap: 30px; align-items: start; }
.news-index { min-width: 0; }
.list-search { margin: 0 0 20px; }
.list-search > label { margin: 0 0 7px; display: block; color: #44565a; font-size: 14px; font-weight: 700; }
.list-search > div { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: stretch; gap: 7px; }
.list-search input { min-width: 0; height: 42px; padding: 9px 12px; border: 1px solid #b9c7ca; border-radius: 3px; color: #333; background: #fff; font: inherit; }
.list-search .button, .list-search .button-secondary { min-height: 42px; margin: 0; }
.list-search-empty { margin: 0; padding: 28px 0; color: #68777a; }
.news-search { padding: 0 10px 20px; border-bottom: 1px solid #dce4e6; }
.news-index-item { position: relative; min-height: 125px; padding: 15px 178px 15px 10px; border-bottom: 1px dotted #ddd; }
.news-index-item h2 { margin: 0 0 4px; color: var(--cyan); font-size: 24px; font-weight: 500; line-height: 26.4px; }
.news-index-item h2 a { color: inherit; text-decoration: none; }
.news-index-item h2 a:hover, .news-index-item h2 a:focus-visible { color: #44c9ee; }
.news-index-item time { color: #777; font-size: 11.9px; line-height: 17px; }
.news-index-item p { margin: 8px 0 0; color: #333; font-size: 14px; line-height: 20px; overflow-wrap: anywhere; }
.news-read { position: absolute; top: 15px; right: 15px; width: 138px; min-height: 39px; padding: 8px 18px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: #fff; background: var(--cyan); font-size: 16px; font-weight: 700; line-height: 23px; text-decoration: none; }
.news-read span { width: 18px; height: 18px; flex: 0 0 18px; background: currentColor; mask: url('../icons/arrow-right.svg') center / 18px 18px no-repeat; -webkit-mask: url('../icons/arrow-right.svg') center / 18px 18px no-repeat; }
.news-read:hover, .news-read:focus-visible { background: #44c9ee; }
.news-empty { padding: 25px 10px; }
.news-pagination { margin: 30px 0 70px; display: flex; flex-wrap: wrap; gap: 4px; }
.news-pagination a, .news-pagination span { min-width: 34px; min-height: 34px; padding: 6px 9px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #ddd; color: var(--cyan-dark); background: #fff; text-decoration: none; }
.news-pagination .is-current { border-color: var(--cyan); color: #fff; background: var(--cyan); }
.news-pagination [aria-disabled="true"], .news-pagination .ellipsis { color: #aaa; background: #f7f7f7; }
.news-archive { padding-bottom: 70px; }
.news-archive nav { border: 1px solid #ddd; background: #f8f8f8; }
.news-archive a { min-height: 54px; padding: 14px 16px 14px 34px; display: flex; align-items: center; justify-content: flex-start; gap: 6px; border-bottom: 1px solid #ddd; color: #777; background: #f8f8f8; font-size: 16px; line-height: 25px; text-decoration: none; }
.news-archive a:last-child { border-bottom: 0; }
.news-archive a:hover, .news-archive a:focus-visible { color: var(--cyan-dark); background: #fff; }
.news-archive a span { color: inherit; }
.news-article { min-width: 0; padding: 15px 10px 70px; color: #333; }
.news-article > header { padding-bottom: 12px; border-bottom: 1px dotted #ddd; }
.news-article h1 { margin: 0 0 6px; color: var(--cyan); font-size: 26px; font-weight: 500; line-height: 1.25; overflow-wrap: anywhere; }
.news-article time { color: #777; font-size: 12px; line-height: 17px; }
.news-article-content { padding: 20px 0 28px; font-size: 14px; line-height: 22px; overflow-wrap: anywhere; }
.news-article-content p { margin: 0 0 14px; }
.news-article-content a { color: var(--cyan-dark); text-underline-offset: 3px; }
.news-article-content img { max-width: 100%; height: auto; }
.news-article-content table { width: 100%; border-collapse: collapse; }
.news-article-content th, .news-article-content td { padding: 8px 10px; border: 1px solid #ddd; }
.news-back { width: fit-content; min-height: 39px; padding: 8px 18px; display: inline-flex; align-items: center; gap: 8px; color: #fff; background: var(--cyan); font-size: 15px; font-weight: 700; line-height: 23px; text-decoration: none; }
.news-back span { width: 18px; height: 18px; flex: 0 0 18px; background: currentColor; mask: url('../icons/arrow-right.svg') center / 18px 18px no-repeat; -webkit-mask: url('../icons/arrow-right.svg') center / 18px 18px no-repeat; transform: rotate(180deg); }
.news-back:hover, .news-back:focus-visible { background: #44c9ee; }

@media (max-width: 820px) {
  .news-layout { grid-template-columns: 1fr; }
  .news-archive { grid-row: 2; }
}

@media (max-width: 520px) {
  .list-search > div { grid-template-columns: 1fr; }
  .list-search .button, .list-search .button-secondary { width: 100%; }
  .news-index-item { padding: 20px 0; }
  .news-index-item h2 { padding-right: 0; }
  .news-index-item p { font-size: 16px; line-height: 25.6px; }
  .news-index-item time { font-size: 13px; line-height: 20px; }
  .news-read { position: static; width: 138px; margin-bottom: 14px; }
  .news-archive a { min-height: 50px; padding: 12px 16px 12px 24px; }
  .news-article { padding: 20px 0 45px; }
  .news-article h1 { font-size: 24px; }
  .news-article-content { font-size: 16px; line-height: 25.6px; }
}

.site-footer { padding: 70px 0 0; color: #c7c7c7; background: #292929; }
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 55px; }
.footer-grid-complete { align-items: start; }
.footer-grid > div { display: flex; align-items: flex-start; flex-direction: column; gap: 8px; }
.footer-grid p { max-width: 380px; color: #999; font-size: 14px; }
.footer-grid strong { margin-bottom: 9px; color: #fff; font-size: 15px; text-transform: uppercase; }
.footer-heading { display: inline-flex; align-items: center; gap: 9px; }
.footer-heading::before { content: ""; width: 18px; height: 18px; flex: 0 0 auto; display: block; background: #fff; mask: var(--footer-icon) center / contain no-repeat; -webkit-mask: var(--footer-icon) center / contain no-repeat; }
.footer-heading-product { --footer-icon: url('../icons/monitor.svg'); }
.footer-heading-download { --footer-icon: url('../icons/download.svg'); }
.footer-heading-support { --footer-icon: url('../icons/book-open.svg'); }
.footer-heading-order { --footer-icon: url('../icons/shopping-cart.svg'); }
.footer-heading-company { --footer-icon: url('../icons/contact.svg'); }
.footer-heading-contact { --footer-icon: url('../icons/phone.svg'); }
.footer-grid .footer-subheading { margin-top: 24px; }
.footer-grid a:not(.brand) { color: #aaa; font-size: 14px; text-decoration: none; }
.footer-nav-link { display: inline-flex; align-items: center; gap: 7px; }
.footer-nav-link::before { content: ""; width: 10px; height: 10px; flex: 0 0 auto; display: block; background: #fff; mask: url('../icons/chevron-right.svg') center / contain no-repeat; -webkit-mask: url('../icons/chevron-right.svg') center / contain no-repeat; }
.footer-grid span { color: #999; font-size: 14px; }
.footer-grid a:hover { color: var(--cyan); }
.footer-bottom { width: 100%; margin-top: 50px; padding: 8px 20px 10px; display: block; border-top: 1px solid #ddd; color: #aaa; background: #fff; font-family: Arial, "Microsoft YaHei", sans-serif; font-size: 12px; line-height: 1.45; text-align: center; }
.footer-bottom a { color: var(--cyan); text-decoration: none; }
.reseller-statement { padding: 13px 20px; border-block: 1px solid #ccc; color: #666; background: #f8f8f8; text-align: center; font-family: Arial, "Microsoft YaHei", sans-serif; font-size: 14px; font-style: italic; line-height: 1.55; }
.reseller-statement strong { display: block; font-weight: 400; }
.reseller-statement p { margin: 2px 0; }

/* Enabled by JavaScript only, so content remains visible if scripting is unavailable. */
.motion-ready .reveal-target { opacity: 0; transform: translate3d(0, 32px, 0); transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s ease var(--reveal-delay, 0ms); }
.motion-ready .reveal-target.reveal-from-left { transform: translate3d(-38px, 0, 0); }
.motion-ready .reveal-target.reveal-from-right { transform: translate3d(38px, 0, 0); }
.motion-ready .reveal-target.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

/* Quiet operational admin UI, intentionally separate from the marketing page rhythm. */
.admin-auth-shell { min-height: calc(100vh - 60px); padding: 70px 20px; display: grid; place-items: start center; background: #edf3f3; }
.admin-auth-panel { width: min(520px, 100%); padding: 38px; border-top: 5px solid var(--cyan); background: #fff; box-shadow: 0 18px 45px rgba(16,38,45,.12); }
.admin-auth-panel h1, .admin-shell h1 { margin: 0; font-size: 38px; line-height: 1.2; }
.admin-auth-panel code { overflow-wrap: anywhere; }
.captcha-field { display: grid; grid-template-columns: minmax(105px, 1fr) 210px auto; align-items: center; gap: 8px; }
.captcha-field img { width: 210px; height: 64px; border: 1px solid #bac9cd; background: #edf7f9; }
.captcha-field .button-secondary { min-height: 44px; white-space: nowrap; }
.admin-form { margin-top: 25px; }
.admin-account-form { width: min(620px, 100%); padding: 25px; border: 1px solid #dce4e6; background: #fafeff; }
.admin-form label { display: block; margin: 15px 0 6px; font-weight: 700; }
.admin-form input:not([type=checkbox]), .admin-form select, .admin-form textarea { width: 100%; padding: 11px 12px; border: 1px solid #bac9cd; border-radius: 3px; color: #333; background: #fff; font: inherit; }
.admin-form textarea { resize: vertical; }
.admin-form .button { margin-top: 25px; }
.check-row { display: flex !important; align-items: center; gap: 9px; font-weight: 400 !important; }
.validation { color: #b42318; }
.notice { margin: 20px 0; padding: 12px 15px; border-left: 4px solid var(--cyan); background: #eaf7fa; }
.admin-shell { min-height: 70vh; padding: 60px 0 90px; font-size: 14px; }
.admin-header { margin-bottom: 35px; display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.admin-header p { margin: 8px 0 0; color: #777; }
.admin-list-search { max-width: 760px; margin-bottom: 28px; }
.admin-actions, .row-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.button-secondary, .button-danger, .row-actions button { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; padding: 0 15px; border: 1px solid #9eafb4; border-radius: 3px; color: #333; background: #fff; font: inherit; text-decoration: none; }
.button-danger { border-color: #d5a29e; color: #9f2118; }
.admin-error { border-left-color: #b42318; background: #fff1f0; }
.admin-dashboard { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.admin-dashboard a { min-height: 150px; padding: 28px; display: flex; flex-direction: column; justify-content: center; border: 1px solid #dce4e6; border-top: 4px solid var(--cyan); color: #333; text-decoration: none; }
.admin-dashboard strong { font-size: 23px; }
.admin-dashboard span { color: #777; }
.admin-page .site-footer { padding: 0; background: #fff; }
.admin-page .site-footer .footer-grid { display: none; }
.admin-page .footer-bottom { min-height: 52px; margin-top: 0; padding: 7px 15px 8px; }
.admin-dashboard-shell { min-height: calc(100vh - 112px); padding: 24px 0 28px; }
.admin-dashboard-shell .admin-header { margin-bottom: 16px; align-items: center; }
.admin-dashboard-shell .admin-header h1 { font-size: 30px; }
.admin-dashboard-shell .admin-header p { margin-top: 4px; }
.admin-dashboard-shell .admin-dashboard { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.admin-dashboard-shell .admin-dashboard a { min-height: 104px; padding: 16px 18px; border-top-width: 3px; }
.admin-dashboard-shell .admin-dashboard strong { font-size: 19px; line-height: 1.3; }
.admin-dashboard-shell .admin-dashboard span { margin-top: 3px; font-size: 12px; line-height: 1.45; }
.admin-list { border-top: 1px solid #dce4e6; }
.admin-list-row { padding: 18px 0; display: grid; grid-template-columns: 160px minmax(0, 1fr) auto; align-items: center; gap: 22px; border-bottom: 1px solid #dce4e6; }
.slide-thumb { width: 160px; aspect-ratio: 16 / 7; background: #16333c center / cover no-repeat; }
.slide-summary { min-width: 0; display: flex; flex-direction: column; }
.slide-summary strong { font-size: 19px; }
.slide-summary span, .slide-summary small { overflow: hidden; color: #777; text-overflow: ellipsis; white-space: nowrap; }
.row-actions form { margin: 0; }
.carousel-editor { margin-top: 0; }
.form-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 24px; }
.form-panel { padding: 25px; border: 1px solid #dce4e6; background: #fafeff; }
.form-panel h2 { margin: 0 0 18px; font-size: 22px; }
.form-panel h2:not(:first-child) { margin-top: 32px; padding-top: 25px; border-top: 1px solid #dce4e6; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.sticky-actions { position: sticky; z-index: 10; bottom: 0; margin-top: 22px; padding: 15px; display: flex; align-items: center; justify-content: flex-end; gap: 12px; border: 1px solid #dce4e6; background: rgba(255,255,255,.96); box-shadow: 0 -8px 22px rgba(16,38,45,.08); }
.admin-form .sticky-actions .button { margin-top: 0; }
.content-row { grid-template-columns: minmax(0, 1fr) auto; }
.channel-tree { display: grid; gap: 28px; }
.channel-tree-group { border: 1px solid #dce4e6; background: #fff; }
.channel-tree-heading { min-height: 58px; padding: 12px 18px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px; border-bottom: 1px solid #dce4e6; background: #f4f8f9; }
.channel-tree-heading > span { padding: 3px 8px; color: #fff; background: var(--cyan-dark); font-size: 12px; font-weight: 700; }
.channel-tree-heading h2 { margin: 0; font-size: 21px; line-height: 1.25; }
.channel-tree-heading small { color: #6d7d81; }
.channel-tree .admin-list-row { padding-inline: 18px; }
.channel-tree-root { border-bottom: 1px solid #c9d7da; }
.channel-tree-root .slide-summary strong { font-size: 20px; }
.channel-tree-children { position: relative; margin-left: 34px; padding-left: 28px; }
.channel-tree-children::before { content: ""; position: absolute; top: 0; bottom: 24px; left: 0; border-left: 2px solid #b8c9cd; }
.channel-tree-child { position: relative; }
.channel-tree-child::before { content: ""; position: absolute; top: 50%; left: -28px; width: 20px; border-top: 2px solid #b8c9cd; }
.channel-tree-child:last-child { border-bottom: 0; }
.channel-tree-child .slide-summary strong { font-size: 17px; font-weight: 600; }
.channel-tree-modules { padding: 0 18px; border-top: 1px dashed #b8c9cd; background: #fbfcfc; }
.channel-tree-module { padding-inline: 0 !important; }
.channel-tree-module .slide-summary strong::before { content: "独立"; margin-right: 8px; padding: 2px 6px; color: #fff; background: #607d84; font-size: 11px; font-weight: 700; vertical-align: 2px; }
.rich-editor.ql-container { height: 520px; min-height: 0; margin-top: 7px; overflow: hidden; background: #fff; }
.rich-editor .ql-editor { height: 100%; min-height: 0; overflow-y: auto; font-size: 16px; line-height: 1.8; }
.rich-content-form .form-panel:first-child { min-width: 0; }
.rich-content-form .sticky-actions { position: static; }
.rich-content-form .sticky-actions > button { min-height: 44px; }
.html-source-form .sticky-actions { position: static; }
.html-source-editor { min-height: 640px; tab-size: 2; resize: vertical; color: #17343a !important; background: #fff !important; font: 14px/1.65 Consolas, "Courier New", monospace !important; white-space: pre; overflow: auto; }
.source-editor-notice { border-left-color: #d48a00; background: #fff8e8; }
.page-template-picker { margin: 22px 0 18px; padding: 16px 18px; border-left: 4px solid var(--cyan); background: #edf7f9; }
.page-template-picker > label { margin-top: 0; }
.page-template-controls { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: stretch; gap: 8px; }
.page-template-controls .button-secondary { min-width: 105px; }
.page-template-controls .button-secondary:disabled { cursor: not-allowed; opacity: .55; }
.page-template-picker > p { margin: 8px 0 0; color: #64767a; font-size: 13px; }
.statistics-status dl { display: grid; grid-template-columns: 180px 1fr; gap: 12px 20px; }
.statistics-status dt { color: #777; font-weight: 700; }
.statistics-status dd { margin: 0; overflow-wrap: anywhere; }
.domain-certificate-admin { width: min(920px, calc(100% - 40px)); }
.settings-tabs { min-height: 48px; margin-bottom: 12px; padding: 5px; display: flex; align-items: center; gap: 4px; border: 1px solid #d7e1e3; background: #f4f8f9; }
.settings-tab { min-height: 38px; padding: 9px 15px; display: inline-flex; align-items: center; color: #24434a; font-weight: 700; text-decoration: none; }
.settings-tab:hover { color: var(--cyan-dark); background: #e7f1f3; }
.settings-tab.is-active { color: #fff; background: var(--cyan-dark); }
.settings-tab b { min-width: 20px; margin-left: 7px; padding: 1px 6px; color: var(--cyan-dark); background: #fff; font-size: 11px; text-align: center; }
.settings-panel-help { margin: 0 0 14px; color: #64767a; line-height: 1.65; }
.field-card { padding: 24px; border: 1px solid #d7e1e3; background: #fff; }
.site-settings-admin { width: min(920px, calc(100% - 40px)); }
.indexnow-settings { display: grid; gap: 14px; }
.indexnow-settings > .settings-panel-help { margin-bottom: 0; }
.indexnow-card-heading { margin-bottom: 16px; display: flex; flex-direction: column; gap: 4px; }
.indexnow-card-heading > strong { color: #173f47; font-size: 17px; }
.indexnow-card-heading > span { color: #64767a; font-size: 13px; line-height: 1.55; }
.indexnow-toggle-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.indexnow-toggle { min-height: 74px; padding: 14px; display: flex; align-items: flex-start; gap: 10px; border: 1px solid #d8e7ea; background: #f6fafb; cursor: pointer; }
.indexnow-toggle input { width: 17px; height: 17px; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--cyan-dark); }
.indexnow-toggle span { display: flex; flex-direction: column; gap: 3px; }
.indexnow-toggle small { color: #64767a; font-size: 12px; line-height: 1.5; }
.indexnow-definition-list { margin: 16px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #d8e7ea; border-left: 1px solid #d8e7ea; }
.indexnow-definition-list > div { min-width: 0; padding: 12px; border-right: 1px solid #d8e7ea; border-bottom: 1px solid #d8e7ea; background: #fbfdfd; }
.indexnow-definition-list dt, .indexnow-queue-grid dt { margin-bottom: 3px; color: #64767a; font-size: 12px; }
.indexnow-definition-list dd, .indexnow-queue-grid dd { margin: 0; overflow-wrap: anywhere; }
.indexnow-definition-list code { font-size: 12px; }
.indexnow-settings-form > .button { margin-top: 16px; }
.indexnow-action-card { background: #fff; }
.indexnow-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.indexnow-actions form { margin: 0; }
.indexnow-queue-grid { margin: 0 0 14px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.indexnow-queue-grid > div { min-width: 0; padding: 12px; border: 1px solid #d8e7ea; background: #f6fafb; }
.domain-settings-form, .tls-upload-form { margin-top: 0; }
.field-help { margin-top: 6px; display: block; color: #64767a; font-size: 12px; font-weight: 400; line-height: 1.55; }
.domain-settings-example { margin: 18px 0 0; padding: 15px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; border: 1px solid #d8e7ea; background: #f4f9fa; }
.domain-settings-example strong { width: 100%; color: var(--cyan-dark); }
.domain-settings-example code { overflow-wrap: anywhere; }
.domain-settings-form > .button { margin-top: 18px; }
.admin-warning { border-left-color: #c47a00; background: #fff8e8; }
.certificate-management { min-height: 280px; }
.tls-status-bar { margin-bottom: 14px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid #d7e1e3; background: #f7fafb; }
.tls-status-bar > div { min-width: 0; padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.tls-status-bar > div + div { border-left: 1px solid #d7e1e3; }
.tls-status-bar span { color: #64767a; font-size: 12px; }
.tls-status-bar strong { overflow-wrap: anywhere; }
.tls-mode { width: fit-content; padding: 3px 8px; color: #fff; font-size: 12px; }
.tls-mode.is-automatic { background: #34844b; }
.tls-mode.is-manual { background: #b36c00; }
.tls-days.is-urgent { color: #b42318; }
.tls-current-card, .tls-auto-card { background: #fafeff; }
.tls-auto-card > strong { color: var(--cyan-dark); font-size: 17px; }
.tls-auto-card p { margin-bottom: 0; color: #64767a; line-height: 1.7; }
.tls-certificate-meta { margin: 0; display: grid; gap: 0; }
.tls-certificate-meta > div { padding: 11px 0; display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 15px; border-bottom: 1px solid #e1e8ea; }
.tls-certificate-meta dt { color: #64767a; font-weight: 700; }
.tls-certificate-meta dd { margin: 0; overflow-wrap: anywhere; }
.tls-auto-form { margin-top: 22px; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #d7e1e3; }
.tls-auto-form div { display: flex; flex-direction: column; gap: 3px; }
.tls-auto-form small { color: #64767a; }
.tls-file-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.tls-submit-row { margin-top: 22px; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #d7e1e3; }
.tls-submit-row > div { display: flex; flex-direction: column; gap: 3px; }
.tls-submit-row small { color: #64767a; }
.tls-submit-row .button { margin-top: 0; flex: 0 0 auto; }
.tls-risk-confirmation { margin-top: 20px !important; padding: 13px; border: 1px solid #ead7aa; background: #fffaf0; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #ffe36e; outline-offset: 3px; }

@media (max-width: 1199px) {
  .site-width, .site-nav { width: min(900px, calc(100% - 40px)); }
  .ready-section > .site-width { width: min(940px, calc(100% - 30px)); max-width: 940px; }
  .hero-slide-content { width: min(720px, calc(100% - 40px)); }
  .nav-links { gap: 18px; }
  .nav-links > a, .nav-group > a { font-size: 12px; }
}

@media (max-width: 820px) {
  .site-width, .site-nav { width: min(720px, calc(100% - 40px)); }
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .nav-links.is-open { position: absolute; top: 66px; right: 20px; width: min(470px, calc(100vw - 40px)); height: auto; max-height: calc(100vh - 85px); padding: 18px 25px 25px; display: block; overflow-y: auto; background: rgba(4, 39, 45, .98); box-shadow: 0 15px 35px rgba(0,0,0,.3); }
  .nav-links.is-open > a, .nav-group > a { padding: 10px 0; display: block; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-links > a::before, .nav-group > a::before { display: none; }
  .nav-group { height: auto; display: block; }
  .nav-dropdown { position: static; width: auto; padding: 4px 0 9px 16px; display: block; border: 0; background: transparent; box-shadow: none; }
  .nav-dropdown a { padding: 6px 0; color: #aebfc3; background: transparent; }
  .nav-submenu { position: static; width: auto; padding-left: 16px; display: block; background: transparent; box-shadow: none; }
  .nav-submenu-trigger { border-bottom: 0 !important; }
  .admin-nav-links .admin-session { margin: 14px 0 0; padding-top: 14px; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.14); }
  .admin-nav-links .admin-session > span { color: #5d4816; }
}

@media (max-width: 1000px) {
  .ready-section > .site-width { width: min(720px, calc(100% - 30px)); max-width: 720px; }
  .latest-news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .latest-news { padding: 115px 0 125px; }
  .admin-dashboard-shell .admin-dashboard { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .overview-section::after { display: none; }
  .overview-columns { width: 100%; }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .motion-ready .reveal-target.reveal-from-left, .motion-ready .reveal-target.reveal-from-right { transform: translate3d(0, 32px, 0); }
  .site-width, .site-nav { width: min(100% - 30px, 560px); }
  .brand img { top: 9px; width: 77px; height: 42px; }
  .hero-carousel, .hero-carousel-track, .hero-slide { min-height: 520px; }
  .hero-slide { background-position: 28% top; background-size: auto 100%; }
  .hero-slide-shade { background: rgba(0, 30, 35, .28); }
  .hero-slide-content { height: 520px; padding: 115px 44px 90px; }
  .hero-copy { width: 100%; }
  .hero-copy h1 { font-size: 38px; }
  .hero-copy h2 { font-size: 24px; }
  .hero-bullets { font-size: 20px; }
  .hero-description { font-size: 14px; }
  .carousel-previous { left: 3px; }
  .carousel-next { right: 3px; }
  .carousel-arrow { width: 38px; font-size: 55px; }
  .carousel-dots { bottom: 25px; }
  .benefit-grid, .counter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 28px; }
  .overview-columns, .latest-news-grid, .statistics-values { grid-template-columns: 1fr; }
  .overview-section { padding: 80px 0 90px; }
  .business-block { margin-top: 80px; }
  .latest-news, .trial-section { padding: 75px 0 85px; }
  .statistics-section { padding: 60px 0 90px; }
  .latest-news header h2, .statistics-section header h2, .trial-section > .site-width > h2 { font-size: 34px; }
  .trial-lead { font-size: 21px; }
  .download-actions { flex-wrap: wrap; }
  .testimonial-columns { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-item:not(.is-active) { transform: translate3d(0, 25px, 0); }
  .testimonial-section { min-height: 420px; padding: 95px 0 70px; }
  .testimonial-section blockquote { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .form-grid { grid-template-columns: 1fr; }
  .admin-list-row { grid-template-columns: 120px minmax(0, 1fr); }
  .slide-thumb { width: 120px; }
  .row-actions { grid-column: 1 / -1; }
  .channel-tree .row-actions { grid-column: auto; }
  .tls-file-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .hero-slide-content { padding-inline: 38px; }
  .hero-copy h1 { font-size: 34px; }
  .hero-copy h2 { font-size: 21px; }
  .hero-actions { align-items: flex-start; gap: 10px; }
  .hero-or { display: none; }
  .benefit-grid, .counter-grid, .footer-grid { grid-template-columns: 1fr; }
  .counter-section { min-height: 520px; padding: 105px 0; }
  .counter-grid { gap: 45px; }
  .footer-bottom { flex-direction: column; }
  .ready-section { padding-bottom: 65px; }
  .page-hero { background-size: auto 100%; }
  .page-hero h1 { font-size: 34px; }
  .admin-auth-panel { padding: 28px 20px; }
  .captcha-field { grid-template-columns: 1fr; }
  .captcha-field input { grid-column: auto; }
  .captcha-field img { width: 100%; max-width: 210px; height: auto; aspect-ratio: 210 / 64; }
  .captcha-field .button-secondary { width: 100%; }
  .admin-header { flex-direction: column; }
  .admin-dashboard, .field-pair { grid-template-columns: 1fr; }
  .admin-dashboard-shell { min-height: calc(100vh - 112px); padding: 14px 0 18px; }
  .admin-dashboard-shell .admin-header { margin-bottom: 10px; flex-direction: row; align-items: center; gap: 12px; }
  .admin-dashboard-shell .admin-header h1 { font-size: 24px; }
  .admin-dashboard-shell .admin-header .section-kicker, .admin-dashboard-shell .admin-header p { display: none; }
  .admin-dashboard-shell .admin-header .button-secondary { min-height: 36px; padding-inline: 11px; }
  .admin-dashboard-shell .admin-dashboard { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .admin-dashboard-shell .admin-dashboard a { min-height: 88px; padding: 12px; }
  .admin-dashboard-shell .admin-dashboard strong { font-size: 17px; overflow-wrap: anywhere; }
  .admin-dashboard-shell .admin-dashboard span { display: none; }
  .admin-list-row { grid-template-columns: 1fr; }
  .channel-tree-heading { grid-template-columns: auto minmax(0, 1fr); }
  .channel-tree-heading small { grid-column: 2; }
  .channel-tree-children { margin-left: 18px; padding-left: 18px; }
  .channel-tree-child::before { left: -18px; width: 12px; }
  .channel-tree .row-actions { grid-column: 1; }
  .slide-thumb { width: 100%; }
  .sticky-actions { align-items: stretch; flex-direction: column; }
  .rich-editor.ql-container { height: 440px; }
  .statistics-status dl { grid-template-columns: 1fr; }
  .settings-tabs { align-items: stretch; flex-direction: column; }
  .settings-tab { justify-content: center; }
  .indexnow-toggle-grid, .indexnow-definition-list, .indexnow-queue-grid { grid-template-columns: 1fr; }
  .indexnow-actions { align-items: stretch; flex-direction: column; }
  .indexnow-actions form, .indexnow-actions button { width: 100%; }
  .tls-status-bar { grid-template-columns: 1fr; }
  .tls-status-bar > div + div { border-top: 1px solid #d7e1e3; border-left: 0; }
  .tls-certificate-meta > div { grid-template-columns: 1fr; gap: 3px; }
  .tls-auto-form, .tls-submit-row { align-items: stretch; flex-direction: column; }
  .tls-auto-form .button-secondary, .tls-submit-row .button { width: 100%; }
}

@media (max-width: 760px) {
  .admin-dashboard-shell { min-height: calc(100vh - 128px); padding: 12px 0 16px; }
  .admin-dashboard-shell .admin-header { margin-bottom: 10px; flex-direction: row; align-items: center; gap: 12px; }
  .admin-dashboard-shell .admin-header h1 { font-size: 24px; }
  .admin-dashboard-shell .admin-header .section-kicker, .admin-dashboard-shell .admin-header p { display: none; }
  .admin-dashboard-shell .admin-header .button-secondary { min-height: 36px; padding-inline: 11px; }
  .admin-dashboard-shell .admin-dashboard { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .admin-dashboard-shell .admin-dashboard a { min-height: 80px; padding: 10px 12px; }
  .admin-dashboard-shell .admin-dashboard strong { font-size: 17px; overflow-wrap: anywhere; }
  .admin-dashboard-shell .admin-dashboard span { display: none; }
}

@media (min-width: 481px) and (max-width: 760px) {
  .admin-dashboard-shell .admin-dashboard { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .admin-dashboard-shell .admin-dashboard strong { font-size: 15px; }
}

@media (max-width: 480px) {
  .admin-dashboard-shell { padding-block: 8px; }
  .admin-dashboard-shell .admin-dashboard a { min-height: 72px; padding-block: 8px; }
  .admin-page .footer-bottom { min-height: 0; padding: 5px 10px 6px; font-size: 10px; line-height: 1.3; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide, .hero-slide .hero-copy, .testimonial-item, .motion-ready .reveal-target { transition: none; transform: none; }
  .motion-ready .reveal-target { opacity: 1; }
}

/* Current vamsoft.com inner-product page frame. */
.product-page .product-hero { min-height: 270px; height: 270px; margin-top: -60px; padding: 0; display: grid; place-items: center; background-position: left top; background-size: 125% auto; }
.product-page .product-hero h1 { width: 100%; max-width: none; margin: 48px 0 0; color: #fff; font-size: 42px; line-height: 1.1; text-align: center; text-transform: none; }
.product-breadcrumb-wrap { width: min(1170px, calc(100% - 30px)); padding: 0 15px; background: #f5f5f5; }
.product-breadcrumb { min-height: 42px; margin: 0; padding: 9px 0; display: flex; align-items: center; flex-wrap: wrap; gap: 0; color: #777; font-size: 14px; line-height: 23px; list-style: none; text-transform: none; }
.product-breadcrumb li + li::before { content: "/"; margin: 0 10px; color: #bbb; }
.product-breadcrumb a { color: var(--cyan); text-decoration: none; }
.product-breadcrumb a:hover { color: var(--cyan-dark); }
.product-layout { width: min(1170px, calc(100% - 30px)); margin-top: 15px; margin-bottom: 60px; padding-inline: 15px; display: grid; grid-template-columns: minmax(0, 847.5px) 262.5px; align-items: start; gap: 30px; }
.product-main { min-width: 0; }
.product-page .product-content { width: auto; max-width: none; min-height: 0; padding: 0; color: #333; font-size: 16px; line-height: 26px; }
.product-page .product-content > h2 { margin: 48px 0 24px; font-size: 30px; text-align: left; }
.product-page .product-content > h2::after { display: none; }
.product-page .product-content > h2:first-child { margin-top: 0; }
.product-overview .product-content > div:first-child { min-height: 71px; margin-bottom: 40px; padding-left: 90px; display: flex; align-items: center; background: url('../images/vamsoft/fusion-logo-go-h71.png') left center / 71px 71px no-repeat; font-size: 18px; line-height: 29px; }
.product-overview .product-highlight-table th { padding-bottom: 40px; text-align: center; }
.product-overview .product-highlight-table th h2 { margin: 0 0 10px; color: var(--cyan); font-size: 24px; text-align: center; }
.product-overview .product-highlight-table th h2::after { content: ""; width: 70px; margin: 15px auto 0; display: block; border-top: 2px solid var(--cyan); }

.channel-hub-content { width: min(1170px, calc(100% - 30px)); max-width: none; min-height: 258px; padding: 30px 15px 55px; }
.channel-hub-content > * { max-width: none; }
.channel-hub-intro { margin: 0 0 30px; color: #333; font-size: 16px; line-height: 26px; }
.channel-summary-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 38px 30px; }
.channel-summary-item { min-width: 0; }
.channel-summary-item h2 { margin: 0 0 8px; color: #333; font-size: 27px; font-weight: 400; line-height: 1.25; }
.channel-summary-action { min-height: 25px; padding: 2px 7px; display: inline-flex; align-items: center; gap: 4px; color: #fff !important; background: #65c91a; font-size: 13px; line-height: 21px; text-decoration: none; text-transform: uppercase; transition: background-color .2s; }
.channel-summary-action:hover, .channel-summary-action:focus-visible { color: #fff !important; background: #4eaa0c; }
.channel-summary-action span { font-size: 18px; line-height: 1; }
.channel-summary-item p { margin: 14px 0 0; color: #333; font-size: 16px; line-height: 24px; }

.product-sidebar { min-width: 0; }
.sidebar-card { margin: 0 0 -1px; padding: 20px 15px; border: 1px solid #ddd; color: #444; background: #f8f8f8; font-size: 14px; line-height: 20px; }
.sidebar-card h2 { margin: 0 0 13px; color: #333; font-size: 21px; line-height: 1.2; }
.sidebar-card h2:not(:first-child) { margin-top: 24px; }
.sidebar-card p { margin: 7px 0 12px; color: #555; }
.sidebar-card a { color: var(--cyan); text-decoration: none; }
.sidebar-card a:hover { color: var(--cyan-dark); }
.sidebar-card span { display: block; margin-top: 5px; }
.sidebar-products { padding: 0; }
.sidebar-products h2 { margin: 0; padding: 20px 15px; }
.sidebar-products nav { border-top: 1px solid #ddd; }
.sidebar-products a { padding: 13px 33px; display: block; border-bottom: 1px solid #ddd; color: #333; font-size: 16px; }
.sidebar-products a:last-child { border-bottom: 0; }
.sidebar-products a:hover, .sidebar-products a.is-active { color: var(--cyan); background: #fff; }
.sidebar-resources > a { margin-top: 17px; display: block; }
.sidebar-resources strong { display: block; font-size: 15px; }
.sidebar-resources span { color: #666; font-size: 12px; line-height: 17px; }
.sidebar-contact > a, .sidebar-contact > span { display: block; }

.product-highlight-table td::before, .product-highlight-table td::after, .feature-detail::before { transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease; }
.product-highlight-table td:hover::before { border-color: var(--cyan); background: var(--cyan); transform: scale(1.04); }
.product-highlight-table td:hover::after { background: #fff; }
.feature-detail:hover::before { border-color: var(--cyan); color: #fff; background: var(--cyan); transform: scale(1.04); }

.product-divider { width: 70px; height: 0; margin: 30px auto; border: 0; border-top: 2px solid var(--cyan); }
.product-navigation { width: 100%; margin-top: 0; padding: 10px 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); overflow: hidden; border: 1px dotted #ccc; background: #fff; }
.product-navigation a { --product-accent: #ccc; position: relative; min-width: 0; min-height: 150px; padding: 0 13px 48px; display: block; border-right: 1px dotted #ccc; color: #555; text-decoration: none; }
.product-navigation a:last-child { border-right: 0; }
.product-navigation a::before { content: ""; position: absolute; top: 36px; left: 13px; width: calc((100% - 26px) * .8); height: 6px; border-radius: 2px; background: var(--product-accent); transition: width .218s ease; }
.product-navigation strong { display: block; color: #555; font-size: 18px; font-weight: 400; line-height: 26px; }
.product-navigation span { margin-top: 25px; display: block; color: #666; font-size: 13px; line-height: 19px; }
.product-navigation i { position: absolute; bottom: 4px; left: 13px; width: 42px; height: 42px; display: grid; place-items: center; border: 3px solid #ccc; border-radius: 50%; color: #aaa; font-size: 24px; font-style: normal; line-height: 1; transition: color .2s, border-color .2s, background-color .2s, transform .2s; }
.product-navigation .overview { --product-accent: #0caedc; }
.product-navigation .features { --product-accent: #63ca22; }
.product-navigation .benefits { --product-accent: #ff5a00; }
.product-navigation .screenshots { --product-accent: #59335d; }
.product-navigation .pricing { --product-accent: var(--cyan); }
.product-navigation a:not(.is-active):hover::before, .product-navigation a:not(.is-active):focus-visible::before { width: calc((100% - 26px) * .95); }
.product-navigation a:hover strong, .product-navigation a:focus-visible strong { color: var(--product-accent); }
.product-navigation a:hover i, .product-navigation a:focus-visible i { border-color: var(--product-accent); color: #fff; background: var(--product-accent); transform: translateX(3px); }
.product-navigation a.is-active { --product-accent: #ccc; cursor: default; }
.product-navigation a.is-active::before { width: calc(100% - 26px); }
.product-navigation a.is-active strong { color: #999; }
.product-navigation a.is-active i, .product-navigation a.is-active:hover i, .product-navigation a.is-active:focus-visible i { border-color: #ccc; color: #aaa; background: transparent; transform: rotate(-45deg); }

.seen-enough { margin: 20px 0 0; padding: 0; background: #fff; }
.seen-enough h2 { margin: 0 0 10px; color: #333; font-size: 24px; font-weight: 400; line-height: 1.2; }
.seen-enough > div { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: center; gap: 25px; }
.seen-enough p { margin: 0; color: #444; font-size: 14px; line-height: 20px; }
.seen-enough > div > div { display: flex; gap: 4px; }
.seen-enough a { min-height: 48px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; flex: 1 1 0; color: #fff; text-decoration: none; text-transform: uppercase; white-space: nowrap; }

.back-to-top { position: fixed; z-index: 150; right: 28px; bottom: 28px; width: 46px; height: 46px; padding: 0; display: grid; place-items: center; border: 0; color: #fff; background: var(--cyan); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .2s, visibility .2s, transform .2s, background-color .2s; pointer-events: none; }
.back-to-top span { font: 700 27px/1 Arial, sans-serif; }
.back-to-top:hover, .back-to-top:focus-visible { background: var(--cyan-dark); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }

@media (max-width: 1199px) {
  .product-breadcrumb-wrap, .product-layout { width: min(970px, calc(100% - 30px)); }
  .product-layout { grid-template-columns: minmax(0, 1fr) 240px; }
}

@media (max-width: 820px) {
  .product-page .product-hero { min-height: 270px; height: 270px; }
  .product-page .product-hero h1 { margin-top: 45px; font-size: 36px; }
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar { margin-top: 35px; }
  .product-navigation { display: flex; overflow-x: auto; }
  .product-navigation a { min-width: 165px; }
  .screenshot-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seen-enough > div { grid-template-columns: 1fr; }
  .seen-enough > div > div { max-width: 360px; }
  .channel-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .independent-content { width: min(720px, calc(100% - 40px)); padding-block: 45px 70px; }
  .independent-page .product-hero h1.long-title { font-size: 31px; }
}

@media (max-width: 480px) {
  .product-page .product-hero h1 { font-size: 34px; }
  .product-breadcrumb-wrap, .product-layout { padding-inline: 0; }
  .product-layout { margin-bottom: 45px; }
  .product-breadcrumb { padding-inline: 15px; }
  .product-overview .product-content > div:first-child { min-height: 62px; padding-left: 76px; background-size: 62px 62px; font-size: 16px; line-height: 26px; }
  .product-benefits .product-content > div:first-child > h2 { font-size: 27px; }
  .benefit-list td:first-child { width: 68px; padding-inline: 16px; font-size: 54px; }
  .benefit-list td:last-child { padding-right: 18px; }
  .benefit-list h3 { font-size: 20px; }
  .screenshot-gallery { grid-template-columns: 1fr; }
  .screenshot-lightbox { max-width: calc(100vw - 20px); max-height: calc(100vh - 20px); }
  .screenshot-lightbox-frame { padding: 8px 8px 38px; }
  .pricing-summary { display: block; }
  .pricing-summary tbody { display: block; }
  .pricing-summary tr { display: grid; grid-template-columns: 105px minmax(0, 1fr); }
  .pricing-summary td:first-child { width: auto; }
  .pricing-summary td { min-height: 58px; height: auto; padding: 10px; }
  .pricing-summary-price > span:first-child { font-size: 16px; }
  .pricing-summary-price > a { margin: 5px 0 0; }
  .pricing-actions { grid-template-columns: 1fr; grid-template-rows: repeat(4, auto); gap: 5px; }
  .pricing-actions > span, .pricing-actions > span:nth-of-type(2) { grid-column: 1; text-align: left; }
  .pricing-actions > span:first-of-type { grid-row: 1; }
  .pricing-actions > span:nth-of-type(2) { grid-row: 2; }
  .pricing-actions > div:first-of-type { grid-column: 1; grid-row: 3; }
  .pricing-actions > div:nth-of-type(2) { grid-column: 1; grid-row: 4; }
  .seen-enough > div > div { width: 100%; flex-wrap: wrap; }
  .seen-enough a { flex-basis: 145px; }
  .back-to-top { right: 15px; bottom: 15px; }
  .channel-hub-content { padding: 25px 0 45px; }
  .channel-summary-grid { grid-template-columns: 1fr; gap: 30px; }
  .channel-summary-item h2 { font-size: 24px; }
  .page-template-controls { grid-template-columns: 1fr; }
  .independent-page .product-hero h1.long-title { font-size: 28px; }
  .independent-content h2 { margin-top: 40px; font-size: 25px; }
}