 /* ===== 国内云服务器 产品页 v3 专用样式（复用 index.css 配色，仅补本页布局）===== */
 /* 图片暂空：主图/场景图标/定价插图/二维码 均为占位块，后续替换为 <img>/背景图即可 */
 /* 地域标签、系列标签、场景标签、FAQ 分类标签均为静态展示，真实切换需配合后台/JS */

 header~* .section-content {
     max-width: 1180px;
 }

 /* ---------- 产品页头（浅色） ---------- */



 .cv-hero {
     background: linear-gradient(115deg, #e9f0fd 0%, #f3f7ff 50%, #dfeafc 100%);
     position: relative;
     overflow: hidden;
     padding-top: 72px;
     height: 460px;
 }

 .cv-hero .section-content {
     padding: 36px 20px 40px;
     position: relative;
     z-index: 1;
 }

 .cv-hero-pills {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 20px;
     flex-wrap: wrap;
 }

 .cv-hero-pills b {
     font-weight: 400;
     font-size: 14px;
     color: #fff;
     background: #2B6CFF;
     border-radius: 3px;
     padding: 3px 10px;
 }

 .cv-hero-pills span {
     font-size: 14px;
     color: #fff;
     background: linear-gradient(90deg, #f64041 1%, #f64041 74%, rgba(246, 64, 65, 0) 99%);
     padding: 4px 14px;
     cursor: pointer;
 }

 .cv-hero-top {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 40px;
 }

 .cv-hero h1 {
     font-size: 40px;
     margin: 0 0 14px;
     font-weight: 600;
     color: #1d2129;
 }

 .cv-hero-desc {
     font-size: 16px;
     line-height: 2;
     color: #4e5969;
     max-width: 620px;
     margin: 0;
 }

 .cv-hero-btns {
     margin-top: 24px;
     display: flex;
     align-items: center;
     gap: 12px;
     flex-wrap: wrap;
 }

 .cv-hero-btns .btn {
     min-width: 108px;
 }

 .cv-hero-btns .btn-ghost {
     background: rgba(255, 255, 255, .8);
     color: #2B6CFF;
     border: 1px solid #c9d8ff;
 }

 .cv-hero-btns .btn-ghost:hover {
     background: #fff;
 }

 .cv-hero-art {
     flex: 0 0 300px;
     height: 180px;
     border-radius: 12px;
     background: rgba(255, 255, 255, .5);
     border: 1px dashed #a8c1f0;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #8aa0d0;
     font-size: 13px;
 }

 /* 页头下促销条：3 卡 + 右侧链接列 */
 .cv-promo-wrap {
     position: relative;
     z-index: 2;
     padding-bottom: 26px;
     top: -16px;

 }

 .cv-promo {
     border-radius: 8px;
     display: flex;
     align-items: stretch;
     gap: 10px;
 }

 .cv-promo-container {
     display: flex;
     border: 2px solid #fff;
     background: linear-gradient(to bottom, #F3F5F8, #fff);
     box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, .3);
 }

 .cv-promo-card {
     flex: 1;
     padding: 20px 24px;
     gap: 16px;
 }

 .cv-promo-card h5 {
     margin: 0 0 8px;
     font-size: 18px;
     color: #1d2129;
 }

 .cv-promo-card p {
     margin: 0 0 10px;
     font-size: 14px;
     line-height: 1.7;
     color: #86909c;
 }

 .cv-promo-card a {
     font-size: 14px;
     color: #2B6CFF;
     text-decoration: none;
     margin-top: auto;
 }

 .cv-promo-card a:hover {
     text-decoration: underline;
 }

 .cv-promo-side {
     flex: 1;
     padding: 14px 20px;
     display: flex;
     flex-direction: column;
     justify-content: space-around;
     gap: 8px;
     background: linear-gradient(to bottom, #F3F5F8, #fff);
     box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, .3);
     border: 2px solid #fff;
 }

 .cv-promo-side a {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 14px;
     color: #4e5969;
     text-decoration: none;
 }

 .cv-promo-side a:hover {
     color: #2B6CFF;
 }

 .cv-promo-side em {
     font-style: normal;
     flex: 0 0 auto;
     font-size: 11px;
     border-radius: 3px;
     padding: 1px 8px;
     color: #ff7d00;
     background: #fff3e8;
 }

 .cv-promo-side em.b {
     color: #2B6CFF;
     background: #e8efff;
 }

 .cv-promo-side em.g {
     color: #0aa679;
     background: #e3f6ef;
 }

 /* ---------- 左侧浮动锚点导航 ---------- */
 .cv-anchor {
     position: fixed;
     left: 24px;
     top: 50%;
     transform: translateY(-50%);
     z-index: 50;
     background: #fff;
     border-radius: 8px;
     box-shadow: 0 6px 20px rgba(52, 52, 52, .12);
     padding: 8px 0;
     width: 118px;
 }

 .cv-anchor a {
     display: block;
     padding: 9px 14px;
     font-size: 13px;
     color: #4e5969;
     text-decoration: none;
     border-left: 2px solid transparent;
 }

 .cv-anchor a:hover {
     color: #2B6CFF;
     border-left-color: #2B6CFF;
     background: #f3f7ff;
 }

 @media (max-width: 1380px) {
     .cv-anchor {
         display: none;
     }
 }

 /* ---------- 热门规格：地域标签 + 套餐行 ---------- */

 .cv-plan-list.cv-plan-list {
     display: none;
 }

 .cv-all-link {
     text-align: center;
     margin-top: 16px;
     margin-bottom: 16px;
     font-size: 13px;
 }

 .hot-nav-container {
     background: #fff;
     box-shadow: 8px 20px 20px 0 rgba(55, 99, 170, .11),
         -8px -8px 20px 0 #fff;
 }

 .cloud2-page #cv-spec .hot-detail {
     max-width: 1360px;
     padding-top: 30px;
     padding-bottom: 30px;
 }

 .cv-plan-offer {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 10px;
     min-height: 48px;
     margin-bottom: 16px;
     padding: 10px 18px;
     border: 1px solid #ffd591;
     background: #fff7e8;
     color: #d46b08;
     font-size: 14px;
 }

 .cv-plan-offer-label {
     flex: 0 0 auto;
     padding: 3px 8px;
     border-radius: 2px;
     background: #f53f3f;
     color: #fff;
     font-size: 12px;
     line-height: 18px;
 }

 .cv-plan-offer strong {
     color: #b54708;
     font-size: 16px;
     font-weight: 600;
 }

 .cv-plan-offer-note {
     color: #8c5a16;
 }

 .cv-all-link a {
     color: #007aff;
     text-decoration: none;
 }

 .cv-region-tabs {
     display: flex;
     justify-content: center;
     gap: 32px;
     margin: 0px;
     padding: 0;
 }

 .cv-region-tabs li {
     list-style: none;
     font-size: 16px;
     color: #4e5969;
     padding: 0px 20px 20px;
     cursor: pointer;
     border-bottom: 2px solid transparent;

 }

 .cv-region-tabs li.active {
     color: #2B6CFF;
     font-weight: 600;
     border-bottom-color: #2B6CFF;
 }

 .cv-plan-list {
     display: flex;
     flex-direction: column;
 }

 .cv-plan {
     background: #F3F5F8;
     box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, .1),
         -8px -8px 20px 0 #fff;
     border: 1px solid #eef0f5;
     display: flex;
     align-items: stretch;
     position: relative;
     overflow: hidden;
     transition: box-shadow .2s, border-color .2s;
 }

 .cv-plan:hover {
     box-shadow: 0 10px 28px rgba(43, 108, 255, .12);
 }

 .cv-ribbon {
     position: absolute;
     top: 0;
     right: 0;
     z-index: 2;
     background: linear-gradient(100deg, #ff8f4d, #f5563f);
     color: #fff;
     font-size: 11px;
     padding: 4px 14px;
     border-radius: 0 0 0 10px;
 }

 .cv-plan-name {
     flex: 0 0 240px;
     background: linear-gradient(0deg, #f3f6fc, #e9eef6);
     padding: 22px 20px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .cv-plan-name h4 {
     margin: 0 0 8px;
     font-size: 20px;
     color: #1d2129;
     white-space: nowrap;
     font-weight: 400;
 }

 .cv-plan-name span {
     font-size: 14px;
     color: #86909c;
 }

 .cv-plan-mid {
     flex: 1;
     min-width: 0;
     padding: 30px 20px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .cv-plan-specs {
     display: grid;
     grid-template-columns: repeat(6, minmax(88px, 1fr));
     gap: 10px;
 }

 .cv-plan-specs dl {
     margin: 0;
 }

 .cv-plan-specs dt {
     font-size: 14px;
     color: #86909c;
     margin-bottom: 6px;
     font-weight: 400;
 }

 .cv-plan-specs dd {
     margin: 0;
     font-size: 13px;
     color: #1d2129;
     font-weight: 400;
     border: 1px solid #e5e8ef;
     border-radius: 4px;
     background: #fbfcfe;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     line-height: 36px;
     padding: 0px 8px;
     box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, .1),
         -8px -8px 20px 0 #fff,
         inset 0 4px 20px 0 hsla(0, 0%, 100%, .5);
     margin-top: 12px;
 }

 .cv-plan-points {
     margin-top: 12px;
     font-size: 14px;
     color: #4e5969;
     margin-top: 20px;
 }

 .cv-plan-points::before {
     content: "✓ ";
     color: #2B6CFF;
     font-weight: 600;

 }

 .cv-plan-price {
     flex: 0 0 130px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     margin: 30px 0px;
     border-left: 1px solid #DDDDDD;
     padding-left: 16px;
 }

 .cv-plan-price b {
     color: #f53f3f;
     font-size: 28px;
     font-weight: 500;
     white-space: nowrap;
 }

 .cv-plan-price b small {
     font-size: 12px;
     font-weight: 400;
 }

 .cv-plan-price del {
     font-size: 12px;
     color: #3d485d;
     margin-top: 4px;
 }

 .cv-plan-buy {
     flex: 0 0 auto;
     display: flex;
     align-items: center;
     padding: 0 24px;
 }

 .cloud2-page .cv-plan-buy a.btn-primary:hover,
 .cloud2-page .cv-plan-buy a.btn-primary:focus {
     color: #fff !important;
 }

 /* ---------- 产品优势（四轻横排） ---------- */
 .cv-adv-row {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 36px;
     margin-top: 8px;
 }

 .cv-adv-title {
     margin-bottom: 30px;
 }

 .cv-adv {
     display: flex;
     gap: 14px;
     align-items: flex-start;
 }

 .cv-adv i {
     flex: 0 0 40px;
     width: 40px;
     height: 40px;
     display: inline-block;
     background-size: contain;
     background-repeat: no-repeat;
     background-position: center;
 }

 .cv-adv h4 {
     margin: 0 0 8px;
     font-size: 18px;
     font-weight: 400;
     color: #1d2129;
 }

 .cv-adv p {
     margin: 0;
     font-size: 14px;
     line-height: 1.8;
     color: #6b7280;
     font-weight: 400;
 }

 /* ---------- 系列产品推荐（横条行） ---------- */
 .cv-series-tabs {
     display: flex;
     justify-content: center;
     gap: 32px;
     margin: 0 0 26px;
     padding: 0;
 }

 .cv-series-tabs li {
     list-style: none;
     font-size: 14px;
     color: #4e5969;
     padding-bottom: 10px;
     cursor: pointer;
     border-bottom: 2px solid transparent;
 }

 .cv-series-tabs li.active {
     color: #2B6CFF;
     font-weight: 600;
     border-bottom-color: #2B6CFF;
 }

 .cv-series-list {
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 .cv-series {
     background: #fff;
     border: 1px solid #eef0f5;
     border-radius: 8px;
     display: flex;
     align-items: stretch;
     overflow: hidden;
     transition: box-shadow .2s, border-color .2s;
 }

 .cv-series:hover {
     border-color: #c9d8ff;
     box-shadow: 0 10px 28px rgba(43, 108, 255, .12);
 }

 .cv-series-name {
     flex: 0 0 172px;
     background: #f7f9fd;
     padding: 22px 20px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .cv-series-name h4 {
     margin: 0 0 6px;
     font-size: 15px;
     color: #1d2129;
 }

 .cv-series-name span {
     font-size: 12px;
     color: #86909c;
 }

 .cv-series-mid {
     flex: 1;
     padding: 20px 24px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .cv-series-cols {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 12px;
 }

 .cv-series-cols dl {
     margin: 0;
 }

 .cv-series-cols dt {
     font-size: 12px;
     color: #86909c;
     margin-bottom: 6px;
 }

 .cv-series-cols dd {
     margin: 0;
     font-size: 13px;
     color: #1d2129;
 }

 .cv-series-note {
     margin-top: 12px;
     font-size: 12px;
     color: #4e5969;
 }

 .cv-series-note::before {
     content: "✓ ";
     color: #2B6CFF;
     font-weight: 600;
 }

 .cv-series-price {
     flex: 0 0 130px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     text-align: right;
 }

 .cv-series-price b {
     color: #f53f3f;
     font-size: 22px;
     font-weight: 600;
 }

 .cv-series-price b small {
     font-size: 12px;
     font-weight: 400;
 }

 .cv-series-buy {
     flex: 0 0 auto;
     display: flex;
     align-items: center;
     padding: 0 24px;
 }

 /* ---------- 热门应用场景 ---------- */
 .hot-title h2 {
     font-size: 28px;
     font-weight: 500;
 }


 .cv-scn-title {
     margin-bottom: 32px;
 }

 .cv-scn-tabs {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 28px;
     margin: 0 0 26px;
     padding: 0;
 }

 .cv-scn-tabs li {
     list-style: none;
     font-size: 16px;
     color: #4e5969;
     padding: 0px 20px 20px;
     cursor: pointer;
     border-bottom: 4px solid transparent;
 }

 .cv-scn-tabs li.active {
     color: #2B6CFF;
     font-weight: 600;
     border-bottom-color: #2B6CFF;
 }

 .cv-scn-panel {
     background: #fff;
     border: 1px solid #eef0f5;
     border-radius: 8px;
     padding: 36px 34px;
     display: flex;
     gap: 36px;
 }

 .cv-scn-flow {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 8px;
 }

 .cv-scn-step {
     text-align: center;
     flex: 0 0 auto;
 }

 .cv-scn-step i {
     display: block;
     width: 76px;
     height: 76px;
     margin: 0 auto 12px;
     border-radius: 10px;
     background: #f0f5ff;
     border: 1px dashed #b9cdf5;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #8aa0d0;
     font-size: 11px;
     font-style: normal;
 }

 .cv-scn-step p {
     margin: 0;
     font-size: 12px;
     color: #4e5969;
     max-width: 110px;
     line-height: 1.6;
 }

 .cv-scn-arrow {
     color: #c9cdd4;
     font-size: 18px;
     flex: 0 0 auto;
 }

 .cv-scn-info {
     flex: 0 0 280px;
     border-left: 1px solid #f0f2f7;
     padding-left: 30px;
 }

 .cv-scn-info h5 {
     margin: 0 0 10px;
     font-size: 14px;
     color: #1d2129;
 }

 .cv-scn-info>p {
     margin: 0 0 20px;
     font-size: 12px;
     line-height: 1.9;
     color: #6b7280;
 }

 .cv-scn-info menu {
     margin: 0 0 20px;
     padding: 0;
 }

 .cv-scn-info menu li {
     list-style: none;
     margin-bottom: 8px;
 }

 .cv-scn-info menu a {
     font-size: 12px;
     color: #4e5969;
     text-decoration: none;
 }

 .cv-scn-info menu a:hover {
     color: #2B6CFF;
 }

 .cv-scn-info menu a::before {
     content: "› ";
     color: #2B6CFF;
 }

 .cv-scn-rel {
     display: flex;
     gap: 22px;
 }

 .cv-scn-rel a {
     font-size: 12px;
     color: #2B6CFF;
     text-decoration: none;
 }

 .cv-scn-rel a:hover {
     text-decoration: underline;
 }

 /* ---------- 文档与定价 ---------- */

 .cv-doc-title {
     margin-bottom: 32px;
 }

 .cv-doc-layout {
     display: flex;
     gap: 20px;
     align-items: stretch;
 }

 .cv-doc-grid {
     width: 66.66%;
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 16px;
 }

 .cv-doc-card {
     background: #fff;
     border-radius: 8px;
     padding: 22px 24px;
     box-shadow: 0 4px 16px rgba(52, 52, 52, .05);
     transition: transform .2s, box-shadow .2s;
     background: linear-gradient(0deg, #fff, #f3f5f8);
 }

 .cv-doc-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 26px rgba(43, 108, 255, .1);
 }

 .cv-doc-card h4,
 .cv-price-panel h4 {
     margin: 0 0 8px;
     font-size: 20px;
     font-weight: 500;
     color: #1d2129;
     padding-bottom: 12px;
 }

 .cv-doc-card p,
 .cv-price-panel>p {
     margin: 0;
     font-size: 14px;
     line-height: 1.8;
     color: #6b7280;
 }

 .cv-price-panel {
     flex: 33.33%;
     background: linear-gradient(to right bottom, #F3F5F8, #fff);
     border: 1px solid #dfe8fb;
     border-radius: 8px;
     padding: 24px 26px;
     display: flex;
     flex-direction: column;
 }

 .cv-price-panel menu {
     margin-top: 30px;
     padding: 0;
 }

 .cv-price-panel menu li {
     list-style: none;
     margin-bottom: 10px;
 }

 .cv-price-panel menu a {
     font-size: 14px;
     color: #4e5969;
     text-decoration: none;
 }

 .cv-price-panel menu a:hover {
     color: #2B6CFF;
 }

 .cv-price-panel menu a::before {
     content: "· ";
     color: #2B6CFF;
 }

 .cv-price-art {
     margin-top: auto;
     height: 110px;
     border-radius: 8px;
     background: rgba(43, 108, 255, .06);
     border: 1px dashed #b9cdf5;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #8aa0d0;
     font-size: 12px;
 }

 /* ---------- 常见问题 ---------- */
 .cv-faq-tabs {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 30px;
     margin: 0 0 28px;
     padding: 0;
     border-bottom: 1px solid #eef0f5;
 }

 .cv-faq-tabs li {
     list-style: none;
     font-size: 16px;
     color: #4e5969;
     padding: 0px 20px 20px;
     cursor: pointer;
     border-bottom: 2px solid transparent;
     margin-bottom: -1px;
 }

 .cv-faq-tabs li.active {
     color: #2B6CFF;
     font-weight: 600;
     border-bottom-color: #2B6CFF;
 }

 .cv-faq {

     margin: 0 auto;
     display: none;
 }

 .cv-faq-hot {
     background: #f2f7ff;
     border: 1px solid #d6e4ff;
     border-radius: 8px;
     padding: 20px 24px;
     margin-bottom: 18px;
     position: relative;
 }

 .cv-faq-hot h4 {
     margin: 0 0 10px;
     font-size: 15px;
     color: #1d2129;
 }

 .cv-faq-hot p {
     margin: 0;
     font-size: 13px;
     line-height: 1.9;
     color: #4e5969;
 }

 .cv-faq-hot p b {
     color: #2B6CFF;
     font-weight: 600;
 }

 .cv-faq-hot>s {
     text-decoration: none;
     position: absolute;
     top: 14px;
     right: 18px;
     color: #a9aeb8;
     font-size: 16px;
     cursor: pointer;
 }

 .cv-faq details {
     background: transparent;
     border-bottom: 1px solid #eef0f5;
     padding: 0 6px;
 }

 .cv-faq summary {
     list-style: none;
     cursor: pointer;
     padding: 18px 0;
     font-size: 15px;
     color: #1d2129;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

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

 .cv-faq summary::after {
     content: "+";
     color: #86909c;
     font-size: 20px;
     font-weight: 300;
 }

 .cv-faq details[open] summary::after {
     content: "−";
     color: #2B6CFF;
 }

 .cv-faq details[open] summary {
     color: #2B6CFF;
 }

 .cv-faq details p {
     margin: 0;
     padding: 0 0 18px;
     font-size: 13px;
     line-height: 1.9;
     color: #6b7280;
 }

 .cv-faq-more {
     text-align: center;
     margin-top: 26px;
     font-size: 13px;
     color: #86909c;
 }

 .cv-faq-more a {
     color: #2B6CFF;
     text-decoration: none;
 }

 /* ---------- 底部售前咨询条（深色） ---------- */
 .cv-precta {
     background: linear-gradient(110deg, #121b30 0%, #1b2c55 100%);
 }

 .cv-precta .section-content {
     padding: 44px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 32px;
 }

 .cv-precta h3 {
     margin: 0 0 8px;
     font-size: 20px;
     color: #fff;
     font-weight: 600;
 }

 .cv-precta p {
     margin: 0 0 18px;
     font-size: 13px;
     color: rgba(255, 255, 255, .65);
 }

 .cv-precta-qr {
     flex: 0 0 auto;
     display: flex;
     align-items: center;
     gap: 14px;
 }

 .cv-precta-qr i {
     width: 84px;
     height: 84px;
     border-radius: 6px;
     background: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #8aa0d0;
     font-size: 11px;
     font-style: normal;
     text-align: center;
     line-height: 1.5;
 }

 .cv-precta-qr span {
     font-size: 12px;
     color: rgba(255, 255, 255, .7);
     max-width: 130px;
     line-height: 1.8;
 }

 /* ---------- 响应式 ---------- */
 @media (max-width: 992px) {
     .cv-hero-top {
         flex-direction: column;
     }

     .cv-hero-art {
         display: none;
     }

     .cv-promo {
         flex-direction: column;
     }

     .cv-promo-card {
         border-right: none;
         border-bottom: 1px solid #f0f2f7;
     }

     .cv-promo-side {
         flex-basis: auto;
         padding: 16px 24px;
     }

     .cv-plan,
     .cv-series {
         flex-wrap: wrap;
     }

     .cv-plan-name,
     .cv-series-name {
         flex-basis: 100%;
     }

     .cv-plan-specs,
     .cv-series-cols {
         grid-template-columns: repeat(2, 1fr);
     }

     .cv-plan-price,
     .cv-series-price {
         text-align: left;
         padding-left: 24px;
     }

     .cv-plan-buy,
     .cv-series-buy {
         padding: 16px 24px;
     }

     .cv-adv-row {
         grid-template-columns: repeat(2, 1fr);
     }

     .cv-scn-panel {
         flex-direction: column;
     }

     .cv-scn-flow {
         flex-wrap: wrap;
         justify-content: flex-start;
     }

     .cv-scn-info {
         flex-basis: auto;
         border-left: none;
         padding-left: 0;
         border-top: 1px solid #f0f2f7;
         padding-top: 22px;
     }

     .cv-doc-layout {
         flex-direction: column;
     }

     .cv-doc-grid {
         grid-template-columns: 1fr;
     }

     .cv-price-panel {
         flex-basis: auto;
     }

     .cv-precta .section-content {
         flex-direction: column;
         align-items: flex-start;
     }
 }

 @media (max-width: 576px) {
     .cv-adv-row {
         grid-template-columns: 1fr;
     }
 }
