html {
  scroll-padding-top: 200px;
  scroll-behavior: smooth;
}

:root {
  --fc-green: #34c040;
  --fc-green-2: #02ce80;
  --fc-grad-green: linear-gradient(180deg, #02ce80 0%, #7bd706 100%);
  --fc-grad-card: linear-gradient(225deg, #d1f8f7 0%, #e5ffda 100%);
  --fc-grad-header: linear-gradient(180deg, #ffffff00 0%, #90ee9026 50%, #00960026 100%);
  --fc-text-dark: #141d38;
  --fc-text-body: #484e60;
  --fc-text-mute: #737887;
  --fc-bg-blue-grey: #eff1f9;
  --fc-tag-blue: #0781fc;
  --fc-border: #e0e0e0;
  --fc-border-2: #d7d7d7;
  --fc-font: Barlow, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
  --fc-font-header: Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, sans-serif;
}
.article-wrap,
.article-wrap * {
  box-sizing: border-box;
}

.article-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  font-family: var(--fc-font);
  color: var(--fc-text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

}
.article-wrap img { display: block; max-width: 100%; height: auto; }

.product-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--fc-bg-blue-grey);
  width: 100%;
  height: 100px;
  position: fixed;
  left: 0;
  right: 0;
  top: 95px;
  z-index: 50;
  overflow: hidden;
  padding: 0 max(40px, calc((100% - 1376px) / 2));
  box-sizing: border-box;
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
}
.product-banner.is-banner-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.banner-brand {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  flex-shrink: 0;
}
.banner-brand img {
  width: 32px;
  height: 32px;
}
.banner-brand span {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: var(--fc-text-dark);
}
.banner-actions {
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
  flex-shrink: 0;
}

.article-wrap .article-header {
  width: 100%;
  background-image: var(--fc-grad-header);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article-wrap .article-breadcrumb {
  max-width: 1376px;
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 17px;
  color: #141d38;
  font-family: var(--fc-font);
}
.article-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  margin: 0;
  padding: 8px 0;
}
.article-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-breadcrumb a {
  color: #6c757d;
  text-decoration: none;
}
.article-breadcrumb li[aria-current="page"] {
  font-weight: 600;
  color: #535761;
}
.article-breadcrumb li > span[aria-hidden="true"] {
  color: #adb5bd;
}
.article-wrap .article-header > h1,
.article-wrap .article-header > p{
  max-width: 980px;
  box-sizing: border-box;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.article-wrap h1 {
  padding: 24px 40px 0;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #141d38;
  font-family: var(--fc-font);
}
.article-wrap .article-header > p {
  margin-top: 24px;
  padding: 0 40px 8px;
  font-size: 18px;
  line-height: 22px;
  color: var(--fc-text-mute);
  text-align: center;
  font-family: var(--fc-font);
}
.article-wrap .article-meta {
  position: relative;
  max-width: 1376px;
  width: 100%;
  padding: 0 40px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
}
.article-wrap .lang-select {
  position: absolute;
  top: 0;
  right: 40px;
  width: 140px;
  height: 40px;
  border: 1px solid var(--fc-border-2);
  border-radius: 4px;
  padding: 9px 28px 9px 11px;
  font-family: "Nunito Sans", var(--fc-font);
  font-size: 16px;
  color: #000000e5;
  line-height: 22px;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}
.article-wrap .lang-select option {
  background: #fff;
  color: #000000e5;
}
.article-wrap .article-meta-info {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
}
.article-wrap .author {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
}
.article-wrap .author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.article-wrap .author p,
.article-wrap .article-meta-info p {
  font-size: 14px;
  margin: 0;
}
.article-wrap .author a {
  color: var(--fc-text-dark);
  text-decoration: none;
}

.article-wrap .two-col {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 66px;
  margin-top: 28px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 80px;
}
@media (min-width: 1441px) {
  .article-wrap .two-col {
    padding-left: 84px;
  }
}
.article-wrap .sidebar-sticky {
  width: 356px;
  max-width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-self: flex-start;
}
.article-wrap .sidebar-sticky.is-sticky-active {
  position: sticky;
  top: 223px;
}
.article-wrap .article-body {
  flex: 1;
  min-width: 0;
  width: 964px;
  max-width: 1200px;
  font-family: var(--fc-font);
}
.article-wrap .article-body h2 {
  width: 100%;
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  color: #141d38;
  margin: 20px 0;
  font-family: var(--fc-font);
  padding: 10px 10px;
  border-left: 5px solid #1DB954;
  background: linear-gradient(90deg, rgba(29, 185, 84, 0.06) 0%, transparent 70%);
  border-radius: 0 6px 6px 0;
  transition: background 0.25s, padding-left 0.25s;
}
.article-wrap .article-body h2:hover {
  background: linear-gradient(90deg, rgba(29, 185, 84, 0.13) 0%, transparent 80%);
  padding-left: 15px;
}
.article-wrap .article-body h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
  color: #141d38;
  margin: 20px 0;
  font-family: var(--fc-font);
  padding: 10px 0;
  border-bottom: 3px solid rgb(0 188 92);
  display: inline-block;
}
.article-wrap .article-body h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #1DB954;
  margin-right: 10px;
  vertical-align: middle;
}
.article-wrap .article-body h4 {
	position: relative;
	font-size: 22px;
	font-weight: 700;
	line-height: 31px;
	color: #141d38;
	margin: 20px 0;
	padding-left: 18px;       
    font-family: var(--fc-font);
}
.article-wrap .article-body h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #53ad39;  
}
.article-wrap .article-body h5 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #141d38;
  margin: 30px 0;
  font-family: var(--fc-font);
}
.article-wrap .article-body p {
  color: var(--fc-text-body);
  line-height: 35px;
  font-size: 20px;
  font-weight: 400;
  font-family: var(--fc-font);
}
.article-wrap .article-body ul,
.article-wrap .article-body ol {
  color: var(--fc-text-body);
  line-height: 30px;
  font-size: 18px;
  font-weight: 400;
  margin: 16px 0;
  padding-left: 24px;
  font-family: var(--fc-font);
}
.article-wrap .article-body li {
  margin-bottom: 8px;
}
.article-wrap .article-body li:last-child {
  margin-bottom: 0;
}
.article-wrap .article-body blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--fc-green);
  background: var(--fc-bg-blue-grey);
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--fc-text-body);
  font-family: var(--fc-font);
}
.article-wrap .article-body blockquote p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}
.article-wrap .article-body hr {
    border-top: 1px solid #56ae37;
    margin: 30px 0;
}
.article-wrap .article-body a {
    color: #56ae37;
    text-decoration: none;
}
.article-wrap .article-body a:hover {
    color: #02a050;
    text-decoration: underline;
}
.article-wrap .article-body > img {
  margin: 30px auto;
  border-radius: 12px;
}


.article-wrap .article-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
}
.article-wrap .article-figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.article-wrap .article-figure iframe {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  display: block;
}

.article-wrap .btns {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
}
.article-wrap .btns--center {
  display: flex;
  width: 100%;
  justify-content: center;
}
.article-wrap .btn {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  border-radius: 999px;
  height: 52px;
  padding: 0 20px 0 24px;
  border: 0;
  cursor: pointer;
  font-family: var(--fc-font);
  text-decoration: none;
}
.article-wrap .btn--green {
  background: var(--fc-grad-green);
  /*  width: 201px;*/
  justify-content: center;
}
.article-wrap .btn--orange {
  background: linear-gradient(180deg, #e7a40d 0%, #feba3f 100%);
  /*  width: 201px;*/
  justify-content: center;
}
.article-wrap .btn span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 22px;
  text-transform: uppercase;
}
.article-wrap .btn img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Download card */
.article-wrap .download-card {
	display: grid;
	grid-template-columns: 240px 1fr;
	grid-template-rows: auto auto auto;
	gap: 16px 24px;
	border-radius: 20px;
	background: #f4fbf7;
	border: 1.5px solid #00a34d;
	box-shadow: 0 12px 32px -12px rgba(0, 163, 77, 0.18);
	padding: 40px;
	margin: 30px 0;
	transition: box-shadow 0.25s ease;
}
.article-wrap .download-card:hover {
	box-shadow: 0 18px 40px -14px rgba(0, 163, 77, 0.28);
}
.article-wrap .download-cover {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	align-self: center;
	overflow: hidden;
	width: 240px;
	max-width: 100%;
	aspect-ratio: 240 / 318;
	grid-row: 1 / -1;
}
.article-wrap .download-cover img {
	margin-left: -15%;
	width: 130%;
	height: 100%;
	object-fit: cover;
}
.article-wrap .download-card .pdtitle {
	grid-column: 2;
	margin: 0;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #00a34d; 
	line-height: 1.2;
}
.article-wrap .download-card ul {
	grid-column: 2;
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	row-gap: 8px;
}
.article-wrap .download-card ul li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.5;
	color: #1e293b;
}
.article-wrap .download-card ul li::before {
	content: '';
	display: inline-block;
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	margin-top: 0.6em;
	background: #53ad39;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0, 163, 77, 0.3);
}
.article-wrap .download-card > .btns {
  grid-column: 2;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
}
.article-wrap .download-card .fc-sd-secure {
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
  flex: 0 0 100%;
  width: 100%;
  margin-top: 4px;
}
.article-wrap .download-card .fc-sd-secure img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}
.article-wrap .download-card .fc-sd-secure span {
  font-size: 16px;
  color: #484e60;
  line-height: 22px;
  font-family: var(--fc-font);
}
.article-wrap .fc-seo-rec-card {
	display: flex;
	gap: 20px;
	padding: 20px;
	background: #ffffff;  
	border: 1.5px solid #f59e0b;
	border-radius: 12px;
	box-shadow: 0 8px 24px -8px rgba(245, 158, 11, 0.18);
	margin: 20px 0;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}
.article-wrap .fc-seo-rec-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px -12px rgba(245, 158, 11, 0.30);
} 
.article-wrap .fc-seo-rec-image {
	flex: 0 0 350px;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}
.article-wrap .fc-seo-rec-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.article-wrap .fc-seo-rec-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.article-wrap .fc-seo-rec-title {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.35;
}
.article-wrap .fc-seo-rec-title a {
	color: #451a03;
	text-decoration: none;
	transition: color 0.2s;
}
.article-wrap .fc-seo-rec-title a:hover {
	color: #f59e0b;
	text-decoration: underline;
}
.article-wrap .fc-seo-rec-content .meta {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 0.85rem;
	color: #78716c;
	margin-top: 2px;
}
.article-wrap .fc-seo-rec-content .meta .read-time i {
	margin-right: 4px;
	color: #f59e0b;
}
.article-wrap .fc-seo-rec-content p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #44403c;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.article-wrap .fc-seo-rec-content .learn-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	background: #f59e0b;
	color: #fff !important;
	font-weight: 600;
	font-size: 0.9rem;
	border-radius: 40px;
	border: 1.5px solid transparent;
	align-self: flex-end;
	margin-top: 4px;
}
.article-wrap .fc-seo-rec-card a {
	color: #f59e0b;
	text-decoration: none;
}
.article-wrap .fc-seo-rec-card a:hover {
	text-decoration: underline;
}
@media (max-width: 768px) {
	.article-wrap .fc-seo-rec-card {
		flex-direction: column;
	}
	.article-wrap .fc-seo-rec-image {
		width: 100%;
		flex-basis: auto;
	}
}
.article-wrap .pros-cons {
  display: flex;
  align-items: stretch;
  column-gap: 24px;
  margin: 24px 0;
}
.article-wrap .pros-cons .pros,
.article-wrap .pros-cons .cons {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  border-radius: 16px;
  padding: 24px 26px;
  background: transparent;
  border: 1.5px solid;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.article-wrap .pros-cons .pros {
  border-color: #00bc5c;
}
.article-wrap .pros-cons .pros:hover {
  box-shadow: 0 8px 20px -8px rgba(0, 188, 92, 0.2);
  transform: translateY(-2px);
}
.article-wrap .pros-cons .cons {
  border-color: #ef4444;
}
.article-wrap .pros-cons .cons:hover {
  box-shadow: 0 8px 20px -8px rgba(239, 68, 68, 0.18);
  transform: translateY(-2px);
}
.article-wrap .pros-cons strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-wrap .pros-cons .pros strong {
  color: #00a34d;
}
.article-wrap .pros-cons .cons strong {
  color: #dc2626;
}
.article-wrap .pros-cons ul {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.article-wrap .pros-cons li {
  display: flex;
  column-gap: 12px;
  align-items: flex-start;  
  margin-bottom: 0;
}
.article-wrap .pros-cons li i {
  flex-shrink: 0;
  width: 20px;
  font-size: 20px;
  line-height: 1.5;        
  text-align: center;
}
.article-wrap .pros-cons .pros i {
  color: #53ad39;
}
.article-wrap .pros-cons .cons i {
  color: #ef4444;
}
.article-wrap .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--fc-green);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  min-width: 72px;
  height: 32px;
  padding: 0 12px;
  flex-shrink: 0;
}
.table-responsive {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 30px 0;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0, 188, 92, 0.10);
	transition: box-shadow 0.25s ease;
}
.table-responsive:hover {
	box-shadow: 0 8px 28px rgba(0, 188, 92, 0.18);
}
.article-wrap .compare-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1.5px solid #00bc5c;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	margin: 0;       
	min-width: 600px;
}
.article-wrap .compare-table thead tr {
	background: #33ca7c;
}
.article-wrap .compare-table th {
	font-weight: 700;
	color: #ffffff;
	background: transparent;
}
.article-wrap .compare-table .col-label {
	background: transparent;
	color: #1e293b;
	width: 200px;
	font-weight: 700;
	border-right: 1px solid #a7f3d0;
}
.article-wrap .compare-table th,
.article-wrap .compare-table td {
	padding: 16px 20px;
	font-size: 16px;
	color: #1e293b;
	text-align: left;
	vertical-align: middle;
	border: 0;
	border-right: 1px solid #a7f3d0;
	border-bottom: 1px solid #d1fae5;
	font-family: var(--fc-font, sans-serif);
	white-space: normal !important;     
	word-wrap: break-word;
	word-break: break-word;
}
.article-wrap .compare-table th:last-child,
.article-wrap .compare-table td:last-child {
	border-right: 0;
}
.article-wrap .compare-table tbody tr:last-child td {
	border-bottom: 0;
}
.article-wrap .compare-table tbody .col-label {
	background: #f0fcf5;
	color: #1e293b;
	font-weight: 600;
	border-right: 1px solid #a7f3d0;
}
.article-wrap .compare-table tbody tr:nth-child(even) {
	background: #f8fffb;
}
.article-wrap .compare-table tbody tr:hover {
	background: #e6f7ed;
}
.article-wrap .compare-table tbody tr:hover .col-label {
	background: #d4f0e0;
}
.article-wrap .compare-table thead th:first-child {
	border-top-left-radius: 16px;
}
.article-wrap .compare-table thead th:last-child {
	border-top-right-radius: 16px;
}

/* FAQ */
.article-wrap .faq {
  display: block;
  flex-direction: column;
}
.article-wrap .faq > h2 {
  width: auto;
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  color: #141d38;
  margin: 20px 0;
}
.article-wrap .faq h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  cursor: pointer;
  margin: 20px 0 0;
  padding: 0 30px 0 40px;
  height: 56px;
  font-size: 22px;
  font-weight: 600;
  line-height: 25px;
  color: #141d38;
  border: 1px solid #141d3826;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  position: static;
}
.article-wrap .faq h4::before {
  content: none !important; 
  display: none;
}
.article-wrap .faq h4::after {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  background:
    linear-gradient(var(--fc-green-2), var(--fc-green-2)) 4px 11px / 16px 2px no-repeat,
    linear-gradient(var(--fc-green-2), var(--fc-green-2)) 11px 4px / 2px 16px no-repeat;
}
.article-wrap .faq h4.is-open {
  border-radius: 10px 10px 0 0;
  border-bottom: none;
  background: #f0f9f0;
  color: #141d38;
}
.article-wrap .faq h4.is-open::after {
  background: linear-gradient(#141d38, #141d38) 4px 11px / 16px 2px no-repeat;
}
.article-wrap .faq h4 + p,
.article-wrap .faq h4 + .faq-answer {
  display: none;
  margin: 0;
  padding: 28px 30px 24px 40px;
  border: 1px solid #141d3826;
  border-top: none;
  border-radius: 0 0 10px 10px;
  background: #fff;
  font-size: 20px;
  color: var(--fc-text-body);
}
.article-wrap .faq h4.is-open + p,
.article-wrap .faq h4.is-open + .faq-answer {
  display: block;
}

.article-wrap .faq .faq-answer > *:last-child {
  margin-bottom: 0;
}
.article-wrap .faq .faq-answer p {
  margin: 0 0 16px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.article-wrap .faq .faq-answer p:last-child {
  margin-bottom: 0;
}
.article-wrap .faq .faq-answer ul,
.article-wrap .faq .faq-answer ol {
  margin: 0 0 16px;
  padding-left: 1.25em;
}
.article-wrap .faq .faq-answer ul:last-child,
.article-wrap .faq .faq-answer ol:last-child {
  margin-bottom: 0;
}
.article-wrap .faq .faq-answer table {
  width: 100%;
  margin: 0 0 16px;
}
.article-wrap .faq .faq-answer table:last-child {
  margin-bottom: 0;
}

/* CTA banner */
.article-wrap .cta-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #00a34d;
  border-radius: 20px;
  padding: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.article-wrap .cta-head {
  display: inline-flex;
  align-items: center;
  column-gap: 15px;
}
.article-wrap .cta-head img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
}
.article-wrap .cta-head strong {
  font-size: 25px;
  font-weight: 700;
  line-height: 34px;
  color: #00a34d;
}

/* Tips */
.article-wrap .tips {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	padding: 20px 20px;
	border-radius: 12px;
	margin: 20px 0;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s ease;
	
    --tips-bg: #f0fcf5;
    --tips-border: #00bc5c;
    --tips-title-color: #00a34d;
    --tips-text-color: #1e293b;
    --tips-link-color: #00bc5c;
    --tips-link-hover: #008a44;
    --tips-shadow: rgba(0, 188, 92, 0.08);
    --tips-shadow-hover: rgba(0, 188, 92, 0.14);

    background: var(--tips-bg);
    border-left: 4px solid var(--tips-border);
    box-shadow: 0 2px 12px var(--tips-shadow);
}
.article-wrap .tips:hover {
    box-shadow: 0 4px 20px var(--tips-shadow-hover);
}
.article-wrap .tips > div {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: var(--tips-title-color);
    font-family: var(--fc-font, sans-serif);
}
.article-wrap .tips > div img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: block;
}
.article-wrap .tips p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--tips-text-color);
    font-family: var(--fc-font, sans-serif);
}
.article-wrap .tips a {
    color: var(--tips-link-color);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    transition: color 0.2s;
}
.article-wrap .tips a:hover {
    color: var(--tips-link-hover);
    text-decoration: none;
}
.article-wrap .tips--blue {
    --tips-bg: #eff6ff;
    --tips-border: #3b82f6;
    --tips-title-color: #2563eb;
    --tips-link-color: #2563eb;
    --tips-link-hover: #1d4ed8;
    --tips-shadow: rgba(59, 130, 246, 0.08);
    --tips-shadow-hover: rgba(59, 130, 246, 0.14);
}
.article-wrap .tips--red {
    --tips-bg: #fef2f2;
    --tips-border: #ef4444;
    --tips-title-color: #dc2626;
    --tips-link-color: #dc2626;
    --tips-link-hover: #b91c1c;
    --tips-shadow: rgba(239, 68, 68, 0.08);
    --tips-shadow-hover: rgba(239, 68, 68, 0.14);
}
.article-wrap .tips--orange {
    --tips-bg: #fff7ed;
    --tips-border: #f97316;
    --tips-title-color: #ea580c;
    --tips-link-color: #ea580c;
    --tips-link-hover: #c2410c;
    --tips-shadow: rgba(249, 115, 22, 0.08);
    --tips-shadow-hover: rgba(249, 115, 22, 0.14);
}
.article-wrap .tips--purple {
    --tips-bg: #f5f3ff;
    --tips-border: #8b5cf6;
    --tips-title-color: #7c3aed;
    --tips-link-color: #7c3aed;
    --tips-link-hover: #6d28d9;
    --tips-shadow: rgba(139, 92, 246, 0.08);
    --tips-shadow-hover: rgba(139, 92, 246, 0.14);
}
.article-wrap .tips--yellow {
    --tips-bg: #fefce8;
    --tips-border: #eab308;
    --tips-title-color: #ca8a04;
    --tips-link-color: #ca8a04;
    --tips-link-hover: #a16207;
    --tips-shadow: rgba(234, 179, 8, 0.08);
    --tips-shadow-hover: rgba(234, 179, 8, 0.14);
}
.article-wrap .tips--gray {
    --tips-bg: #f8fafc;
    --tips-border: #94a3b8;
    --tips-title-color: #475569;
    --tips-link-color: #475569;
    --tips-link-hover: #1e293b;
    --tips-shadow: rgba(148, 163, 184, 0.08);
    --tips-shadow-hover: rgba(148, 163, 184, 0.14);
}
.article-wrap .toc {
  border: 2px solid #00bc5c;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 188, 92, 0.06);
}
.article-wrap .toc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #f0faf5;
  border-bottom: 1.5px solid #00bc5c;
  font-size: 18px;
  font-weight: 700;
  color: #00bc5c;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.4;
}
.article-wrap .toc-head::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300bc5c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.article-wrap .toc-list {
  padding: 16px 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.article-wrap .toc-row {
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
  padding: 4px 0;
}
.article-wrap .toc-row img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}
.article-wrap .toc-row a {
  font-size: 16px;
  line-height: 1.5;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}
.article-wrap .toc-row a:hover {
  color: #56ae37;
}
.article-wrap .toc-row.child {
  padding-left: 32px;
}
.article-wrap .toc-row.show-active {
  background: #f8fafc;
  border-left: 3px solid #56ae37;
  margin-left: -20px;
  padding-left: 17px;
  width: calc(100% + 20px);
  border-radius: 0 4px 4px 0;
}
.article-wrap .toc-row.show-active a {
  color: #0f172a;
  font-weight: 600;
}

/* Recommendations sidebar */
.article-wrap .recs-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #56ae37;
  letter-spacing: -0.2px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid #56ae37;
}
.article-wrap .recs-head::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 30px;
  border-radius: 2px;
  background: #56ae37;
}
.article-wrap .rec-card {
  background: #ffffff;
  border: 2px solid #00bc5c;
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 4px 12px rgba(0, 188, 92, 0.04);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: center;
}

.article-wrap .rec-card:hover {
  border-color: #00964a;               
  box-shadow: 0 8px 28px rgba(0, 188, 92, 0.12);
}
.article-wrap .rec-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 16px;
  display: inline-block;    
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.04));
}
.article-wrap .rec-card > div {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin: 0 0 8px 0;
  padding: 0;
  text-align: center;
}
.article-wrap .rec-card > p {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 20px 0;
  padding: 0;
  text-align: center;
}
.article-wrap .rec-btn {
  display: inline-flex !important;  
  width: auto !important;
  min-width: unset !important;
  padding: 0 32px !important;
  height: 44px;
  border: 0;
  border-radius: 40px;
  background: linear-gradient(135deg, #71b922 0%, #058e74 100%) !important;
  box-shadow: 0 2px 8px rgba(0, 188, 92, 0.2);
  cursor: pointer;
}
.article-wrap .rec-btn a {
  display: inline-flex !important;  
  width: auto !important;           
  height: 100%;
  align-items: center;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
}
.article-wrap .rec-btn a span {
  color: #ffffff;
}
.article-wrap .rec-btn:hover {
  background: #00964a;
}
.article-wrap .rec-card.image-card {
  padding: 12px;
  background: #ffffff;
  border: 2px solid #00bc5c;
  border-radius: 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.article-wrap .rec-card.image-card:hover {
  border-color: #00964a;
  box-shadow: 0 4px 16px rgba(0, 188, 92, 0.08);
}
.article-wrap .rec-card.image-card a {
  display: block;
  width: 100%;
}
.article-wrap .rec-card.image-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  transition: opacity 0.2s;
}
.article-wrap .rec-card.image-card a:hover img {
  opacity: 0.92;
}
.article-wrap .recs.promo-box {
  display: flex;
  flex-direction: column;
}

/* Category sidebar */
.article-wrap .cats {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.article-wrap .cat {
  background: #ffffff;
  border: 2px solid #00bc5c;
  border-radius: 16px;
  padding: 20px 24px 24px;
  transition: border-color 0.2s;
}
.article-wrap .cat:hover {
  border-color: #00964a;
}
.article-wrap .cat-head {
  font-size: 16px;
  font-weight: 700;
  color: #00bc5c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgb(82 182 61);
}
.article-wrap .cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.article-wrap .cat-list li {
  display: flex;
  align-items: flex-start;  
  margin: 0;
  padding: 2px 0;
}
.article-wrap .cat-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #53ad39;
  margin-right: 12px;
  margin-top: 0.6em;       
  opacity: 0.6;
  transition: opacity 0.2s;
}
.article-wrap .cat-list li.hot::before {
  background: #53ad39;
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(0, 188, 92, 0.15);
}
.article-wrap .cat-list a {
  font-size: 16px;
  line-height: 1.5;
  color: #475569;
  text-decoration: none !important;
  transition: color 0.2s;
}
.article-wrap .cat-list a:hover {
  color: #56ae37;
}
.article-wrap .cat-list li.hot a {
  color: #0f172a;
  font-weight: 600;
}
.article-wrap .cat-list li.hot a:hover {
  color: #56ae37;
}

.article-wrap .pricing {
  display: flex;
  column-gap: 20px;
  margin-top: -19px;
  border: 1px solid #00960026;
  border-radius: 20px;
  padding: 11px;
  overflow: hidden;
  background: linear-gradient(180deg, #00960026 0%, #90ee9026 50%, #8fc78f1a 100%);
}
.article-wrap .plan {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 608px;
  padding: 24px 32px;
  border-radius: 16px;
  position: relative;
}
.article-wrap .plan.featured {
  background: var(--fc-grad-green);
}
.article-wrap .plan > .cost,
.article-wrap .plan > .year {
  margin-top: -12px;
}
.article-wrap .plan p {
  margin: 0;
}
.article-wrap .plan .label {
  font-size: 16px;
  line-height: 22px;
  color: #6c757d;
}
.article-wrap .plan .name {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #141d38;
}
.article-wrap .plan .cost {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  line-height: 34px;
}
.article-wrap .plan .cost strong {
  font-size: 28px;
  font-weight: 700;
  color: #f59919;
}
.article-wrap .plan .cost .unit {
  font-size: 20px;
  font-weight: 600;
  color: #6c757d;
}
.article-wrap .plan .cost .bill {
  font-size: 20px;
  color: #6c757d;
}
.article-wrap .plan .year,
.article-wrap .plan .desc {
  font-size: 16px;
  line-height: 22px;
  color: #6c757d;
}
.article-wrap .plan .desc {
  color: #141d38;
}
.article-wrap .plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  line-height: 22px;
  color: #141d38;
}
.article-wrap .plan li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.article-wrap .plan li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.article-wrap .plan .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  height: 56px;
}
.article-wrap .plan .btn span {
  text-transform: none;
}
.article-wrap .plan .btn img {
  width: 20px;
  height: 20px;
}
.article-wrap .plan.featured .btn--green {
  background: #fff;
}
.article-wrap .plan.featured .btn--green span {
  color: #34c040;
}
.article-wrap .plan .note {
  margin-top: -12px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #141d38;
}
.article-wrap .plan .cancel {
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  color: #6c757d;
}
.article-wrap .plan .ribbon {
  position: absolute;
  top: 67px;
  left: 91px;
  display: flex;
  align-items: flex-start;
  width: 108px;
  height: 54px;
  padding-bottom: 4px;
  pointer-events: none;
}
.article-wrap .plan .ribbon span {
  display: flex;
  flex-grow: 1;
  align-items: flex-start;
  padding: 8px 15px 20px 18px;
  background: url(/assets/img/figma-content/mol5lbhg-cj48278.svg) center / cover no-repeat;
  filter: drop-shadow(0 2px 8px #00000040);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #9a4815;
  text-shadow: 0 2px 6px #00000033;
}
.article-wrap .plan.featured .label,
.article-wrap .plan.featured .name,
.article-wrap .plan.featured .cost .unit,
.article-wrap .plan.featured .cost .bill,
.article-wrap .plan.featured .cost strong,
.article-wrap .plan.featured .year,
.article-wrap .plan.featured .desc,
.article-wrap .plan.featured li,
.article-wrap .plan.featured .note,
.article-wrap .plan.featured .cancel {
  color: #fff;
}
.article-wrap .related {
  background: #fff;
  border: 1.5px solid #f59e0b;
  border-radius: 20px;
  padding: 30px 30px;
  margin: 30px 0;
}
.article-wrap .related-head {
  font-size: 22px;
  font-weight: 700;
  color: var(--fc-text-dark);
  padding-bottom: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f59e0b;
  letter-spacing: -0.3px;
}
.article-wrap .related ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.article-wrap .related li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.article-wrap .related li a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--fc-text-body);
  text-decoration: none !important;        
  transition: background 0.2s, color 0.2s;
}
.article-wrap .related li a::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  margin-right: 12px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.article-wrap .related li a::after {
  content: '→';
  font-size: 18px;
  color: #f59e0b;
  opacity: 0.5;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 12px;
  transition: opacity 0.2s;
}
.article-wrap .related li a:hover {
  background: #fef9f0;
  color: var(--fc-text-dark);
}
.article-wrap .related li a:hover::before {
  opacity: 1;
}
.article-wrap .related li a:hover::after {
  opacity: 1;
}
.article-wrap .related li a:visited {
  color: var(--fc-text-body);
  text-decoration: none !important;
}
.article-wrap .vid-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 376px;
  height: 412px;
  padding: 24px;
  border-radius: 16px;
  background: var(--fc-bg-blue-grey);
  overflow: hidden;
}
.article-wrap .vid-card .thumb {
  position: relative;
  min-width: 328px;
  height: 219px;
  border-radius: 8px;
  background-color: #00000033;
  background-image: url(/assets/img/figma-content/mol5lbi3-nvabgjr.png);
  background-position: -13px -4px;
  background-size: 125.79% 103.65%;
  background-repeat: no-repeat;
}
.article-wrap .vid-card .thumb img {
  position: absolute;
  top: 80px;
  left: 134px;
  width: 60px;
  height: 60px;
}
.article-wrap .vid-card p {
  margin: 12px 0 0;
  min-width: 328px;
  font-size: 16px;
  line-height: 22px;
  color: var(--fc-text-body);
}
.article-wrap .vid-card .rec-btn {
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product recommendations */
.article-wrap .prod-recs {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  padding: 100px 270px;
  background: var(--fc-bg-blue-grey);
}
.article-wrap .prod-inner {
  width: 1376px;
  max-width: 100%;
}
.article-wrap .prod-head {
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
}
.article-wrap .prod-head h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: #141d38;
}
.article-wrap .prod-arrows {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 132px;
  height: 58px;
  flex-shrink: 0;
}
.article-wrap .prod-arrows img {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  cursor: pointer;
}
.article-wrap .prod-track {
  margin-top: 40px;
  width: 100%;
  max-width: 1380px;
  height: 486px;
  overflow: hidden;
}
.article-wrap .prod-track .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 520px !important;
  flex-shrink: 0 !important;
  height: 486px;
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.article-wrap .prod-track .swiper-slide:hover .title {
  color: var(--fc-green-2);
}
.article-wrap .prod-recs .meta {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  gap: 16px;
  padding: 32px 32px 0;
}
.article-wrap .prod-recs .meta > div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  gap: 12px;
}
.article-wrap .prod-recs .logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.article-wrap .prod-recs .title {
  margin: 0;
  padding: 12px 0;
  height: 52px;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  color: #141d38;
}
.article-wrap .prod-recs .meta p {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
font-family: var(--fc-font);
  color: var(--fc-text-body);
}
.article-wrap .prod-recs .shot {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  margin-top: auto;
  padding: 32px;
}
.article-wrap .prod-recs .shot img {
  display: block;
  width: 100%;
  max-width: 456px;
  height: auto;
  object-fit: cover;
}

.catalog-box {
  position: fixed;
  bottom: 60px;
  left: 15px;
  width: 240px;
  border-radius: 10px;
  z-index: 1001;
  display: none;
  flex-direction: column-reverse;
  pointer-events: none;
}
.catalog-box .shrink {
  width: 61px;
  height: 61px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  pointer-events: auto;
}
.catalog-box .shrink-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.catalog-box .shrink-node i {
  font-size: 25px;
  color: #6b7280;
}
.catalog-box .catelog-panel {
  width: 260px;
  margin-bottom: 12px;
  display: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  pointer-events: auto;
  overflow: hidden;
}
.catalog-box .page-content {
  padding: 16px 0;
  background: #fff;
}
.catalog-box .page-content .title {
  padding: 0 20px 12px;
  font-weight: 700;
  font-size: 16px;
  color: #111827;
}
.catalog-box .catalog-list {
  margin-left: 20px;
  padding-right: 5px;
  display: flex;
  flex-flow: column nowrap;
  max-height: 50vh;
  overflow-y: auto;
}
.catalog-box .catalog-list a {
  font-size: 14px;
  line-height: 146.68%;
  color: #484e60;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.catalog-box .catalog-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: transparent;
  border-radius: 2px;
}
.catalog-box .catalog-list a:hover {
  color: #6b6e7a;
}
.catalog-box .catalog-list a.a-highlight {
  background: rgba(20, 29, 56, 0.06);
  border-radius: 0 6px 6px 0;
  color: var(--fc-text-dark);
  font-weight: 600;
}
.catalog-box .catalog-list a.a-highlight::before {
  background: var(--fc-text-dark);
}
.catalog-box .catalog-sub-item {
  margin-left: 20px;
  font-size: 14px;
  color: #484e60;
  padding-left: 20px;
}
.catalog-box-scroll {
  position: fixed;
  bottom: 60px;
}

.th-header { position: relative !important; z-index: 100 !important; }
.main-menu ul.sub-menu,
.main-menu ul.mega-menu,
.product-mega-menu { z-index: 9999 !important; }
.main-menu .menu-item-has-children { overflow: visible !important; }
.th-menu-wrapper { z-index: 999999 !important; }

@media (max-width: 1440px) {
  .article-breadcrumb { width: 100%; padding-left: 20px; }
  .article-wrap .article-meta {
    width: 100%;
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
  }
  .article-wrap .lang-select {
    position: static;
    width: 120px;
    height: 36px;
    font-size: 14px;
    padding: 8px 24px 8px 10px;
    margin-top: 8px;
  }
  .article-wrap .prod-recs {
    padding: 100px 40px;
  }
  .article-wrap .prod-inner {
    width: 100%;
  }
  .article-wrap .sidebar-sticky {
    width: 300px;
    max-width: 300px;
  }
  .article-wrap .two-col {
    gap: 36px;
  }
  .article-wrap .rec-btn {
    min-width: 0;
    width: calc(100% - 32px);
  }
  /* 仅多列表格横向滚动；两列小表保持铺满宽度 */
  .article-wrap .compare-table:has(th:nth-child(4)) {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .article-wrap .compare-table:has(th:nth-child(4)) th,
  .article-wrap .compare-table:has(th:nth-child(4)) td {
    white-space: nowrap;
  }
}
@media (max-width: 1199px) {
  .article-wrap .article-breadcrumb { padding: 0 40px; }
  .article-wrap .article-header > h1 { padding: 20px 40px 0; }
  .article-wrap .prod-track .swiper-slide {
    flex-shrink: 1;
    min-width: 0;
  }
}
@media (max-width: 1023px) {
  .article-wrap .article-breadcrumb {
    height: 44px;
    padding: 0 16px;
    font-size: 12px;
    line-height: 15px;
  }
  .article-wrap  h1 {
    padding: 20px 16px 0;
    font-size: 28px;
    line-height: 36px;
  }

  .article-wrap .article-header {
    position: relative;
  }	
  .article-wrap .lang-select {
    position: absolute;
    top: 6px;
    right: 16px;
    z-index: 2;
    width: 100px;
    height: 32px;
    font-size: 12px;
    padding: 6px 24px 6px 8px;
    margin: 0;
  }	
  .article-wrap .article-body {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    overflow-wrap: break-word;
  }
  .article-wrap .two-col {
    flex-direction: column;
    padding: 0 30px;
    margin-top: 20px;
    gap: 0;
  }
  .article-wrap .sidebar-sticky { display: none; }
  .catalog-box {
    display: flex;
    bottom: 60px;
    left: 15px;
  }
  .article-wrap .author { width: 100%; justify-content: center; }
  .article-wrap .author img { width: 32px; height: 32px; }
  .article-wrap .article-meta-info {
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .article-wrap .article-body h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .article-wrap .article-body h3 {
    font-size: 20px;
    line-height: 28px;
  }
    .article-wrap .article-body h4 {
    font-size: 20px;
    line-height: 28px;
  }
  .article-wrap .article-body h5 {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .article-wrap {
    margin-bottom: 48px;
    padding-bottom: 32px;
  }
  .product-banner,
  .product-banner.is-banner-visible { display: none; }
  .article-wrap .article-body h2 { letter-spacing: -0.2px; }
  .article-wrap .article-body p {
    font-size: 18px;
  }
  .article-wrap .article-body ul,
  .article-wrap .article-body ol {
    font-size: 16px;
    line-height: 26px;
  }
  .article-wrap .btns {
    flex-direction: column;
    width: 100%;
    row-gap: 12px;
  }
  .article-wrap .btn {
    width: 100%;
    justify-content: center;
    height: 44px;
  }
  .article-wrap .download-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    align-items: stretch;
  }
  .article-wrap .download-cover { display: none; }
  .article-wrap .download-card .pdtitle,
  .article-wrap .download-card > .btns {
    width: 100%;
  }
  .article-wrap .download-card > .btns {
    justify-content: flex-start;
  }
  .article-wrap .download-card .btn {
    width: auto;
  }
  .article-wrap .pros-cons {
    flex-direction: column;
    row-gap: 20px;
  }
  .article-wrap .pros-cons .pros,
  .article-wrap .pros-cons .cons {
    padding: 20px;
    row-gap: 16px;
    border-radius: 12px;
  }
  .article-wrap .pros-cons li i {
    width: 16px;
    font-size: 16px;
  }
  .article-wrap .article-figure { margin-bottom: 32px; }
  .article-wrap .step-badge {
    min-width: 60px;
    height: 28px;
    font-size: 13px;
  }
  .article-wrap .compare-table th,
  .article-wrap .compare-table td {
	padding: 12px 14px;
	font-size: 14px;
  }
.article-wrap .compare-table .col-label {
    width: 140px;
    min-width: 140px;
  }	
  .article-wrap .faq h4 {
    height: auto;
    min-height: 56px;
    padding: 16px;
    align-items: flex-start;
    border-radius: 8px;
    font-size:20px;
  }
  .article-wrap .faq h4::after {
    margin-left: 12px;
    margin-top: 2px;
  }
  .article-wrap .faq h4.is-open {
    border-radius: 8px 8px 0 0;
  }
  .article-wrap .faq h4 + p,
  .article-wrap .faq h4 + .faq-answer {
    padding: 16px;
    font-size: 18px;
    border-radius: 0 0 8px 8px;
  }
  .article-wrap .cta-banner {
    padding: 20px;
  }
  .article-wrap .cta-banner > .btns {
    margin-top: 20px;
  }
  .article-wrap .pricing {
    flex-direction: column;
    margin-top: 0;
    padding: 10px;
    gap: 16px;
  }
  .article-wrap .plan {
    min-height: 0;
    padding: 20px;
    gap: 16px;
    border-radius: 12px;
  }
  .article-wrap .plan li img {
    width: 16px;
    height: 16px;
  }
  .article-wrap .plan .btn {
    height: 44px;
  }
  .article-wrap .plan .btn img {
    width: 16px;
    height: 16px;
  }
  .article-wrap .plan .ribbon {
    top: 54px;
    left: 91px;
  }
  .article-wrap .related {
    padding: 20px;
    border-radius: 16px;
  }
  .article-wrap .related ul {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .article-wrap .related li a {
    font-size: 14px;
    padding: 8px 10px;
  }

  .article-wrap .related li a::after {
    opacity: 0.4;
  }
  .article-wrap .prod-recs {
    display: none;
  }
  .article-wrap .article-figure iframe {
    border-radius: 8px;
  }
  .article-wrap .rec-logo {
    width: 60px;
    height: 60px;
  }
  .article-wrap .rec-btn {
    min-width: 0;
    width: calc(100% - 32px);
  }
  .article-wrap .cat-head {
    font-size: 18px;
    line-height: 25px;
  }
  .article-breadcrumb li[aria-current="page"] {
    font-size: 12px;
  }
}

.online-help-page,
.online-help-page .two-col {
  overflow: visible;
}

.online-help-page > .article-breadcrumb,
.online-help-page > .two-col {
  width: min(1380px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.online-help-page > .article-breadcrumb {
  height: auto;
  max-width: none;
  margin: 8px auto 12px;
  padding: 30px 40px 0;
}

.online-help-page > .article-breadcrumb ol {
  gap: 10px;
  padding: 0;
}

.online-help-page > .article-breadcrumb li,
.online-help-page > .article-breadcrumb a {
  color: #68748c;
  font-size: 14px;
}

.online-help-page > .article-breadcrumb li[aria-current="page"] {
  color: #049f55;
  font-weight: 600;
}

.online-help-page > .article-breadcrumb li > span[aria-hidden="true"] {
  color: #a2adbd;
}

.online-help-page > .two-col {
  margin-top: 0;
}

.online-help-page #sub-nav-bar {
  display: block !important;
  position: sticky !important;
  top: var(--oh-site-header-height, 0px) !important;
  z-index: 11;
  padding: 14px 0 !important;
  background: #fff;
}

.online-help-page #sub-nav-bar .btn-groups {
  display: none;
}

.online-help-page #sub-nav-bar .btn-groups.show {
  display: block;
  margin: 0;
}

.online-help-page #sub-nav-bar .sub-nav-mobile.d-block {
  display: block !important;
}

.online-help-page #sub-nav-bar .sub-nav-logo a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 34px;
}

.online-help-page #sub-nav-bar .sub-nav-logo img {
  display: inline-block !important;
  width: auto !important;
  height: 34px !important;
  margin: 0 !important;
}

.online-help-page .article-body > header {
  min-height: 112px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
  padding: 2px 0 14px;
  overflow: hidden;
}

.online-help-page h1 {
  margin: 0 0 13px;
  padding: 0 !important;
  text-align: left !important;
  color: #101a38;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.online-help-page .article-body > header p {
  max-width: 610px;
  margin: 0;
  color: #5c687f;
  font-size: 17px;
  line-height: 1.65;
}

.oh-deco {
  position: relative;
  width: 245px;
  height: 122px;
  flex: 0 0 auto;
}

.oh-deco::before,
.oh-deco::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.oh-deco::before {
  width: 108px;
  height: 108px;
  right: 28px;
  top: 0;
  background: linear-gradient(145deg, #f0f7f4, #e5f5ee);
  box-shadow: inset 0 0 0 1px #e5eee9;
}

.oh-deco::after {
  width: 160px;
  height: 65px;
  right: -20px;
  bottom: 4px;
  border-bottom: 2px solid #9bbdf9;
  border-radius: 0 0 70% 50%;
  transform: rotate(-8deg);
}

.oh-deco > b {
  position: absolute;
  right: 62px;
  top: 19px;
  z-index: 2;
  color: #79d7ae;
  font-size: 57px;
  font-weight: 800;
  line-height: 1;
  transform: rotate(7deg);
}

.oh-deco > span {
  position: absolute;
  left: 8px;
  top: 37px;
  z-index: 3;
  width: 102px;
  height: 67px;
  border-radius: 32px 32px 32px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(145deg, #56cf68, #25b958);
  box-shadow: 0 12px 28px rgba(40,185,89,.22);
}

.oh-deco > span i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.online-help-page .article-body h2 {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
  scroll-margin-top: calc(var(--oh-site-header-height, 0px) + var(--oh-product-bar-height, 94px) + 64px);
}

.oh-num {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #049f55;
  background: #eafaf1;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.online-help-page .article-body h3 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.oh-intro-card {
  margin-bottom: 24px;
  padding: 24px 28px;
  border: 1px solid #edf1f7;
  border-radius: 16px;
  background: linear-gradient(135deg, #fbfcff, #f4f7fc);
  box-shadow: 0 9px 28px rgba(26,42,76,.035);
}

.oh-intro-card p {
  margin: 0 0 18px;
  color: #46526b;
  font-size: 15px;
  line-height: 1.8;
}

.oh-intro-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #101a38;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.oh-intro-card .fa-file-pdf {
  color: #ff4e5c;
  font-size: 25px;
}

.oh-intro-card .fa-chevron-right {
  color: #526078;
  font-size: 12px;
}

/* Unique hero */
.oh-hero {
  position: relative;
  margin-bottom: 24px;
  padding: 22px 30px 30px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(125deg, #c7fae8 0%, #ddfbf3 44%, #a8ecf1 100%);
}

.oh-hero::before {
  content: "";
  position: absolute;
  inset: auto -70px -115px 32%;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  filter: blur(2px);
}

.oh-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.1) 0 7px, rgba(255,255,255,.6) 7px 9px);
  opacity: .75;
}

.oh-hero > img {
  position: absolute;
  left: 34px;
  top: 28px;
  z-index: 3;
  width: 58px;
  height: 58px;
  padding: 10px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 28px rgba(0,104,72,.12);
}

.oh-hero > span {
  position: absolute;
  z-index: 4;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.78);
  color: #35856c;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(39,106,91,.10);
}

.oh-hero > span:nth-of-type(1) { right: 7%; top: 28px; transform: rotate(7deg); }
.oh-hero > span:nth-of-type(2) { right: 4%; bottom: 24px; transform: rotate(-5deg); }
.oh-hero > span:nth-of-type(3) { left: 10%; bottom: 24px; transform: rotate(5deg); }

.oh-hero > div {
  position: relative;
  z-index: 2;
  width: min(58%, 500px);
  margin: 0 auto;
  padding: 9px 9px 17px;
  border-radius: 15px 15px 20px 20px;
  background: linear-gradient(160deg, #20304b, #62758c);
  box-shadow: 0 22px 32px rgba(29,77,92,.18);
}

.oh-hero > div::after {
  content: "";
  position: absolute;
  width: 115%;
  height: 18px;
  left: -7.5%;
  bottom: -10px;
  border-radius: 4px 4px 28px 28px;
  background: linear-gradient(#bdcbd2, #78929d);
}

.oh-hero > div img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 800 / 528;
  object-fit: contain;
  border-radius: 8px;
  background: #17191d;
}

@media (max-width: 1199px) {
  .oh-deco {
    width: 190px;
  }
}

@media (max-width: 991px) {
  .online-help-page > .article-breadcrumb,
  .online-help-page > .two-col {
    width: 100%;
    max-width: none;
  }

  .online-help-page > .article-breadcrumb {
    margin: 8px auto 10px;
    padding: 0 16px;
  }

  .online-help-page > .two-col {
    margin-top: 0;
    padding: 0 16px 48px !important;
  }

  .online-help-page .article-body {
    padding: 0 !important;
  }

  .online-help-page h1 {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -.02em;
  }

  .online-help-page .article-body > header p {
    font-size: 15px;
    line-height: 1.55;
  }

  .online-help-page .article-body h2 {
    font-size: 22px;
    line-height: 1.35;
  }

  .online-help-page .article-body h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .oh-intro-card {
    padding: 18px 16px;
  }
}

@media (max-width: 680px) {
  .online-help-page > .article-breadcrumb,
  .online-help-page > .two-col {
    padding-left: 16px;
    padding-right: 16px;
  }

  .online-help-page .article-body > header {
    min-height: auto;
  }

  .online-help-page h1 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .online-help-page .article-body h2 {
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
    font-size: 20px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .online-help-page .article-body h3 {
    font-size: 17px;
  }

  .oh-deco {
    display: none;
  }

  .oh-hero {
    padding: 25px 16px 36px;
  }

  .oh-hero > img {
    left: 20px;
    top: 25px;
    width: 52px;
    height: 52px;
  }

  .oh-hero > div {
    width: 92%;
    margin-top: 28px;
  }

  .oh-hero > span:nth-of-type(1) {
    right: 5%;
    top: 20px;
  }

  .oh-hero > span:nth-of-type(2),
  .oh-hero > span:nth-of-type(3) {
    display: none;
  }

  .oh-num {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}

/*2026.8.11新增视频样式*/
.steps-video-box {
  width: 100%;
  position: relative;
  margin: 0 auto;
    margin-top: 0px;
  margin-top: 20px;
}
.steps-video-box .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .steps-imgs {
    width: 50%;
  }
}
@media (max-width: 480px) {
	.article-wrap .compare-table th,
	.article-wrap .compare-table td {
		padding: 10px 12px;
		font-size: 13px;
	}
	.article-wrap .compare-table .col-label {
		width: 110px;
		min-width: 110px;
	}
	.article-wrap .compare-table {
		min-width: 480px;
	}
}
.article-wrap .compare-table img,
.article-wrap .compare-table svg {
	height: auto !important;
	max-width: 100%;
}