
  /* Font Family */

  @font-face {
    font-family: "Instrument_Serif";
    src: url("../../fonts/Instrument_Serif/InstrumentSerif-Italic.woff")
      format("woff");
    font-weight: 400;
    font-style: 400;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Unitea Sans";
    src: url("../../fonts/UniteaSans/UniteaSans-Regular.woff") format("woff2"),
      url("../../fonts/UniteaSans/UniteaSans-Regular.woff2") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Exocon_regular";
    src: url("../../fonts/Excon/Excon-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Exocon_bold";
    src: url("../../fonts/Excon/Excon-Bold.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  /* Font Family */
  


/* ====== CLAIM OFFER SECTION ====== */
.claim_offer_section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    /* z-index: -1; */
}
.claim_offer_section .purple_gradient{
    opacity: 0.4;
    background: #B2A1FF;
    filter: blur(92px);
    width: 375px;
    height: 305px;
    position: absolute;
    border-radius: 100px;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.claim_offer_section .black_card_purple_gradient{
    border-radius: 1089.432px;
    background: #B2A1FF;
    filter: blur(146.76634216308594px);
    width: 406.86px;
    height: 1089.432px;
    transform: rotate(77.615deg);
    flex-shrink: 0;
    position: absolute;
    right: 0;
    bottom: -530px;
    left: 410px;
    z-index: -1;
}
.claim_offer_section .claim_offer_gradient{
    position: absolute;
    /* top: 0; */
    left: 0;
    bottom: -360px;
    width: 100%;
    height: 100%;
    /* z-index: -1; */
}

.claim_offer_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

/* Claim Offer Badge */
.claim-offer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 119, 51, 0.2);
    border: 1px solid #FE7733;
    /* border-radius: 50px; */
    padding: 4px 12px;
}

.claim-offer-badge span {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FE7733;
    white-space: nowrap;
}

/* Claim Offer Heading - uses text.css h2 */
.claim_offer_content h2 {
    letter-spacing: -1.2px;
    max-width: 764px;
    margin: 0;
}

/* Claim Offer Description */
.claim_offer_content .p2-regular {
    max-width: 767px;
    letter-spacing: -0.16px;
    margin: 0;
}

/* Offer Cards */
.offer_cards_wrapper {
    display: flex;
    gap: 24px;
    margin-top: 60px;
    justify-content: center;
    margin-bottom: 32px;
}

.offer_card {
    flex: 0 0 calc(50% - 12px);
    max-width: 516px;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* White Card */
.offer_card.white_card {
    background: white;
    border: 1px solid #DFE1E6;
    z-index: 2;
    position: relative;
}

/* Black Card with Gradient */
.offer_card.black_card {
    background: #000;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.offer_card.black_card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(ellipse at top right, rgba(178, 161, 255, 0.3) 0%, rgba(178, 161, 255, 0.1) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* .offer_card.black_card > * {
    position: relative;
    z-index: 1;
} */

/* Card Tag */
.offer_card .card_tag {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.16px;
    color: #FE7733;
    margin: 0;
}

/* Card Heading - uses text.css h3 */
.offer_card h3 {
    letter-spacing: -0.96px;
    margin: 0;
    line-height: 1.2;
}

.offer_card.white_card h3 {
    color: #091E42;
}

.offer_card.black_card h3 {
    color: white;
}

/* Benefits Label */
.offer_card .benefits_label {
    margin: 0;
}

.offer_card.white_card .benefits_label {
    color: #253858;
}

.offer_card.black_card .benefits_label {
    color: white;
}

/* Benefits List */
.offer_card .benefits_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer_card .benefits_list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.offer_card .benefits_list li svg {
    flex-shrink: 0;
    margin-top: 8px;
}

.offer_card .benefits_list li p {
    margin: 0;
    letter-spacing: -0.2px;
}

.offer_card.white_card .benefits_list li p {
    color: #253858;
}
.offer_card.white_card .benefits_list li p b{
    color: inherit;
    font-size: inherit;
}
.offer_card.black_card .benefits_list li p {
    color: white;
}
.offer_card.black_card .benefits_list li p b{
    color: inherit;
    font-size: inherit;
}
/* Activate Offer Button */
.btn_activate_offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FE7733;
    border: 1px solid #FE7733;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 14px 20px;
    border-radius: 4.91px;
    text-decoration: none;
    transition: background 0.3s ease;
    width: 183px;
    height: 48px;
}

.btn_activate_offer:hover {
    background: #e66a2c;
    border-color: #e66a2c;
    color: white;
    text-decoration: none;
}

.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .redeem_stepper.connect_section{
    background: url(https://www.cloudways.com/wp-content/uploads/2025/11/bfcm_step_bg.png) no-repeat;
    padding: 100px 0;
    /* margin-bottom: -22px; */
    background-size: cover;
}

.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .stepper .step .logo.animated svg path{
    fill: #fff;
}

.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .textWrap h2{
    margin: auto;
    text-align: center;
    color: #fff;
    margin-bottom: 12px;
}
.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .stepper .step .logo:nth-child(1)::before{
    content: none;
}
.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .stepper .step:nth-child(3) .logo::after{
    content: none;
}
.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .stepper .step .logo{
    margin: auto;
}
.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .stepper .step .textWrap{
    text-align: center;
}


.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .stepper .step .textWrap .p2_semibold{
    margin-bottom: 7px;
}

/* ====== BEST OFFER SECTION ====== */
.bestOffer {
    padding: 80px 0;
    background: #fff;
}

.bestOffer_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Side - Illustration */
.bestOffer_left {
    flex: 0 0 50%;
    /* max-width: 593px; */
    margin-bottom: -180px;
}
.all_other_customers #claim_offer_section .bestOffer_left{
    margin-bottom: 0 !important;
}
.illustration_container {
    position: relative;
    width: 100%;
    height: 585px;
    background: linear-gradient(135deg, rgba(254, 119, 51, 0.05) 0%, rgba(254, 119, 51, 0.1) 100%);
    border-radius: 10px;
    overflow: visible;
}

.person_image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    z-index: 2;
}

.person_image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Decorative Icons */
.illustration_container .icon {
    position: absolute;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.icon_1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.icon_2 {
    bottom: 25%;
    left: 5%;
    animation-delay: 1s;
}

.icon_customize {
    bottom: 12%;
    left: 3%;
    animation-delay: 2s;
}

.customize_circle {
    width: 84px;
    height: 84px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -9.91px 15.95px 24.79px 0px rgba(30, 8, 57, 0.2);
    transform: rotate(20deg);
}

/* Purple Migration Badge */
.badge_migration {
    position: absolute;
    top: 17%;
    right: -10%;
    z-index: 4;
}

.badge_star {
    position: relative;
    width: 172px;
    height: 172px;
}

.badge_star svg {
    width: 100%;
    height: 100%;
}

.badge_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge_content svg {
    width: 42px;
    height: 42px;
}

.badge_content p {
    font-family: 'Unitea Sans', 'Poppins', sans-serif;
    font-size: 20.7px;
    font-weight: 600;
    line-height: 22.12px;
    color: white;
    margin: 0;
    text-align: center;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Right Side - Content */
.bestOffer_right {
    flex: 0 0 45%;
    max-width: 538px;
}

.content_wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Best Offer Badge */
.best-offer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 119, 51, 0.2);
    border: 1px solid #FE7733;
    /* border-radius: 50px; */
    padding: 4px 12px;
    width: fit-content;
}

.best-offer-badge span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FE7733;
    white-space: nowrap;
}

/* Main Heading - uses text.css h2 styling */
.bestOffer_right h2 {
    letter-spacing: -1.2px;
}

/* Features List */
.features_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.features_list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.features_list li svg {
    flex-shrink: 0;
    margin-top: 6px;
}

.features_list li p {
    margin: 0;
}

.features_list li strong {
    font-weight: 700;
    color: #091E42;
}

/* CTA Button */
.btn_claim_offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FE7733;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 18.9px;
    font-weight: 400;
    line-height: 28.36px;
    padding: 10px 20px;
    border-radius: 4.73px;
    text-decoration: none;
    transition: background 0.3s ease;
    max-width: 265px;
    height: 47px;
    margin-top: auto;
}

.btn_claim_offer:hover {
    background: #e66a2c;
    color: white;
    text-decoration: none;
}
 .btn_claim_offer:focus{
    outline: none;
    color: #fff;
    text-decoration: none;
 }
/* How It Works Badge */
.how-it-works-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 119, 51, 0.2);
    border: 1px solid #FE7733;
    /* border-radius: 50px; */
    padding: 4px 12px;
    margin-bottom: 12px;
}

.how-it-works-badge span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FE7733;
    white-space: nowrap;
}

/* stepper  */

.stepper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1400px;
    margin: auto;
    padding: 0 130px;
    gap: 60px;
    margin-top:64px;
}

.stepper .step {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    flex-direction: column;
}

.stepper .step .logo {
    /* background: #FF7D51; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 110px;
    height: 110px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
    border: 2px solid #FF7D51;
    background: transparent;
}

/* Stepper Animation States */
.stepper .step .logo.animated {
    background: #FF7D51;
    transition: background 0.2 cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.stepper .step .logo {
    transition: background 0.2 cubic-bezier(0.4, 0, 0.2, 1), transform 0.1s ease;
}

.stepper .step .logo svg {
    transition: fill 0.2 cubic-bezier(0.4, 0, 0.2, 1);
}

.stepper .step .logo.animated svg path {
    fill: #000;
}

.stepper .step .textWrap {
    max-width: 310px;
}

.stepper .step .textWrap .p2_semibold,
.stepper .step .textWrap .p3_regular {
    color: #fff;
}

.stepper .step .logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -110px;
    background: linear-gradient(to right, #FF7D51 0%, #FF7D51 0%, #fff 0%, #fff 100%);
    height: 1px;
    width: 90px;
    transition: background 0.2 cubic-bezier(0.4, 0, 0.2, 1);
}

.stepper .step .logo::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -220px;
    background: linear-gradient(to right, #FF7D51 0%, #FF7D51 0%, #fff 0%, #fff 100%);
    height: 1px;
    width: 200px;
    transition: background 0.2 cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sequential fill animation for connecting lines */
.stepper .step .logo[data-before-fill]::before {
    background: linear-gradient(to right, #FF7D51 0%, #FF7D51 var(--before-fill-percentage, 0%), #fff var(--before-fill-percentage, 0%), #fff 100%);
}

.stepper .step .logo[data-after-fill]::after {
    background: linear-gradient(to right, #FF7D51 0%, #FF7D51 var(--after-fill-percentage, 0%), #fff var(--after-fill-percentage, 0%), #fff 100%);
}

.connect_section .textWrap {
    margin: auto;
    max-width: 748px;
    text-align: center;
}

.connect_section .textWrap h5 {
    max-width: 500px;
    margin: auto;
    margin-bottom: 24px;
    color: #fff;
}

.connect_section .textWrap .p2_regular {
    color: #fff;
    text-align: center;
}

.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .bestOffer_left img{
    width: 100%;
    height: 100%;
}

.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .bestOffer_right .best-offer-badge{
    margin-bottom: 16px;
}

/* ====== PRICING SECTION ====== */
.pricing_section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    z-index: 0;
}

.pricing_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 40px;
}

/* Pricing Badge */
.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 119, 51, 0.2);
    border: 1px solid #FE7733;
    /* border-radius: 50px; */
    padding: 4px 12px;
}

.pricing-badge span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FE7733;
    white-space: nowrap;
}

/* Pricing Heading - uses text.css h2 */
.pricing_header h2 {
    letter-spacing: -1.2px;
    max-width: 764px;
    margin: 0;
}

/* Pricing Description */
.pricing_description {
    max-width: 767px;
    letter-spacing: -0.16px;
    margin: 0;
}

/* Pricing Features Row */
.pricing_features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.all_other_customers .wt_prc25_main_wrap{
    padding-top: 10px;
}
.pricing_features .feature_item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing_features .feature_item svg {
    flex-shrink: 0;
}

.pricing_features .feature_item p {
    margin: 0;
    white-space: nowrap;
}

.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .grow_smart_scale{
    /* background: #131313; */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: url(https://www.cloudways.com/wp-content/uploads/2025/11/bg_image.png) no-repeat center bottom/cover;
    /* z-index: -1; */
}

/* ====== GROW SMART SCALE SECTION ====== */
.grow_smart_scale .grow_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Top Limited Offer Tag */
.grow_smart_scale .limited_offer_tag {
    font-size: 16px;
    font-weight: 600;
    line-height: 27.19px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    color: #FE7733;
    margin-bottom: 7px;
}

/* Main Heading */
.grow_smart_scale .main_heading {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
}

.grow_smart_scale .main_heading h1 {
    /* font-family: 'Unitea Sans', 'Poppins', sans-serif;
    font-size: 63.5px;
    font-weight: 600;
    line-height: 78.53px; */
    color: white;
    /* margin: 0;
    text-align: center; */
    font-family: 'Unitea Sans';
}

.grow_smart_scale .main_heading .second_line {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    gap: 15px;
    font-family: 'Unitea Sans';
}

/* Italic Gradient "Limits?" */
.grow_smart_scale .italic_gradient {
    text-align: center;
    font-family: 'Instrument_Serif';
    /* font-size: 52.783px; */
    font-style: italic;
    font-weight: 400;
    line-height: 47.08px;
    letter-spacing: -2.639px;
    background: linear-gradient(175deg, #F7F7F7 53.94%, #FFA97D 65.3%, #CDC2FF 75.5%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: inherit;
    /* font-weight: inherit; */
    padding-right: 15px;
}

/* Description Text */
.grow_smart_scale .description_text {
    color: white;
    /* opacity: 0.7; */
    max-width: 784px;
    margin: 0 auto;
    margin-top: 15px;
    letter-spacing: -0.2px;
}

/* CTA Wrapper */
.grow_smart_scale .cta_wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

/* Talk to Expert Button */
.btn_talk_expert {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid white;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 18.9px;
    font-weight: 400;
    line-height: 28.36px;
    padding: 10px 20px;
    border-radius: 4.73px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 209px;
    height: 47px;
}

.btn_talk_expert:hover {
    background: white;
    color: #131313;
    text-decoration: none;
    cursor: pointer;
}

.grow_smart_scale .grow_scale_gradient{
    position: absolute;
    /* top: 0; */
    left: 0;
    bottom: -168px;
    right: 0;
    width: 100%;
    height: 100%;
    /* z-index: -1; */
   
}



/* pricing widget  */

.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .wt_prc25_main_wrap .nav-tabs{
    display: none;
}
.wt_prc25_main_wrap .wt_prc25_v1 .upperTabs .mainTabs .server_pricing_tabs li:nth-child(4) , .wt_prc25_main_wrap .wt_prc25_v1 .upperTabs .mainTabs .server_pricing_tabs li:nth-child(5){
    display: none;
}
.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .wt_prc25_main_wrap .wt_prc25_v1 .upperTabs .mainTabs .server_pricing_tabs li{
    min-width: initial;
    max-width: 420px;
    width: 100%;
}
.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .pricing_section .pricing_gradient_bg{
    position: absolute;
    /* top: 0; */
    left: 0;
    bottom: -720px;
    width: 100%;
    height: 100%;
    z-index: -2;

}
.wt_prc25_main_wrapper .featuresBanner{
    display: none;
}
.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .ppcNavBar .ppc-hdr-wrap .ppc-nav{
    display: flex;
    gap: 24px;
    color: #fff;
    justify-content: center;
    align-items: center;
    width: initial;
    background-color: transparent;

}
.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .ppcNavBar .ppc-hdr-wrap .ppc-nav a{
    color: #fff;
}
.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .ppcNavBar .ppc-hdr-wrap nav{
    background: #000;
    border-radius: 0;
    padding: 20px 0;
}
.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .ppcNavBar .ppc-hdr-wrap .affix-top{
    padding-top: 40px;
}
.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .ppc-hdr-wrap nav{
    top: -10px;
}
.cw_bfcm_deals_main.bfcm_deals25.all_other_customers .ppc-hdr-wrap nav .ppc-value-hdr-cw-logo{
    margin-top: 10px;
}
.all_other_customers .cw_bfcm_deals_main .ppcNavBar .ppc-hdr-wrap nav.affix{
    top: -31px;
}
.join_program_link{
    color: #FE7733;
    text-decoration: underline;
}
.join_program_link:hover{
    color: #FE7733;
}
.claim_offer_section .p2-regular{
    margin: auto;
    text-align: center;
    z-index: 9999999;
    position: relative;
    /* margin-top: 32px; */
}
.claim_offer_section .offer_valid_till{
    margin-top: 10px;
}
.cw_cmpg_body .cw_bfcm_deals_main.bfcm_deals25.all_other_customers .cw_copilot_home_banner .textWrap h2 span{
    padding-right: 5px;
}


/* promocode */

/* Promo Code Pricing Section */
.promo_code .promo_pricing_section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    z-index: 0;
}

.promo_code .promo_pricing_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 50px;
}

/* Promo Code Pricing Badge */
.promo_code .promo_pricing_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 119, 51, 0.2);
    border: 1px solid #FE7733;
    border-radius: 0;
    padding: 4px 12px;
}

.promo_code .promo_pricing_badge span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FE7733;
    white-space: nowrap;
}

/* Promo Code Pricing Heading */
.promo_code .promo_pricing_header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.2px;
    color: #091E42;
    text-align: center;
    max-width: 764px;
    margin: 0;
}

/* Promo Code Pricing Description */
.promo_code .promo_pricing_description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #253858;
    text-align: center;
    max-width: 767px;
    letter-spacing: -0.16px;
    margin: 0;
}

/* Promo Pricing Cards Container */
.promo_code .promo_pricing_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 46px;
}

/* Individual Pricing Card */
.promo_code .promo_pricing_card {
    background: url(https://www.cloudways.com/wp-content/uploads/2025/11/promo_price_bg.png) no-repeat center center/cover;
    border: 1px solid #DFE1E6;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 391px;
}

/* Gradient Background for Cards */
.promo_code .promo_pricing_card::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(178, 161, 255, 0.2) 0%, rgba(178, 161, 255, 0.1) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Card Content */
.promo_code .promo_card_content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 528px;
    width: 100%;
}

/* Card Header */
.promo_code .promo_card_header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Card Title */
.promo_code .promo_card_title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo_code .promo_card_title svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.promo_code .promo_card_title h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.72px;
    color: #FFFFFF;
    margin: 0;
}

/* Card Description */
.promo_code .promo_card_description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    letter-spacing: -0.16px;
    margin: 0;
}

/* Card Pricing Section */
.promo_code .promo_card_pricing {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Pricing Info */
.promo_code .promo_pricing_info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.promo_code .promo_pricing_label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    letter-spacing: -0.16px;
    margin: 0;
}

/* Price Wrapper */
.promo_code .promo_price_wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.promo_code .promo_price_old {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.9px;
    color: #FFFFFF;
    opacity: 0.5;
    position: relative;
}

.promo_code .promo_price_old::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    width: calc(100% + 4px);
    height: 2px;
    background: #FE7733;
    transform: translateY(-50%) rotate(-12deg);
}

.promo_code .promo_price_new {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.2px;
    color: #FFFFFF;
}

.promo_code .promo_price_period {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
}

/* CTA Button */
.promo_code .promo_cta_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FE7733;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 18.9px;
    font-weight: 400;
    line-height: 28.36px;
    padding: 4px 16px;
    border-radius: 4.73px;
    text-decoration: none;
    transition: background 0.3s ease;
    max-width: 222px;
    height: 47px;
    /* width: 100%; */
}

.promo_code .promo_cta_button:hover {
    background: #e66a2c;
    color: #FFFFFF;
    text-decoration: none;
}

/* Card Mockup */
.promo_code .promo_card_mockup {
    position: absolute;
    right: -120px;
    top: 83%;
    transform: translateY(-50%);
    width: 470px;
    height: auto;
    z-index: 0;
}
.promo_code .promo_card_mockup.promo_card_mockup_autonomous {
    right: -118px;
    top: 92%;
}
.promo_code .promo_card_mockup img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.FeatsStatsSec .FeatsStatsOwlSldrWrap .FeatsStatsOwl-carousel .FeatsStatsOwlSldrContentBox .tesmonialContent{
    opacity: 0.4;
}
/* Client Logos Section */
.promo_code .promo_client_logos {
    margin-top: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.exclusive_offer .bestOffer_right .btn_claim_offer{
    margin-top: 36px;
    margin-bottom: 80px;
}
/* Client Heading */
.promo_code .promo_client_heading {
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: 20px; */
    /* font-weight: 500; */
    /* line-height: 1.5; */
    color: #253858;
    text-align: center;
    letter-spacing: -0.2px;
    margin: 0;
}

.promo_code .promo_client_heading .highlight {
    /* font-family: 'Poppins', sans-serif; */
    font-weight: 600;
    color: #FE7733;
    font-size: inherit;
    font-weight: inherit;
}

/* Logos Wrapper */
.promo_code .promo_logos_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 80px; */
    gap: 30px;
    flex-wrap: wrap;
}

.promo_code .promo_logos_wrapper img {
    /* height: 35px; */
    height: 22px;
    width: auto;
    opacity: 0.4;
    object-fit: contain;
    filter: grayscale(100%);
}

/* Stats Section */
.promo_code .promo_stats_section {
    padding: 100px 0;
    background: #fff;
    padding-bottom: 0;
}

/* Stats Header */
.promo_code .promo_stats_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 80px;
}

/* Stats Badge */
.promo_code .promo_stats_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 119, 51, 0.2);
    border: 1px solid #FE7733;
    border-radius: 0;
    padding: 4px 12px;
}

.promo_code .promo_stats_badge span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FE7733;
    white-space: nowrap;
}

/* Stats Heading */
.promo_code .promo_stats_header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.2px;
    color: #091E42;
    text-align: center;
    max-width: 764px;
    margin: 0;
}

/* Stats Description */
.promo_code .promo_stats_description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #253858;
    text-align: center;
    max-width: 623px;
    letter-spacing: -0.16px;
    margin: 0;
}

/* Stats Grid */
.promo_code .promo_stats_grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 46px;
    margin-bottom: 67px;
}

/* Individual Stat Item */
.promo_code .promo_stat_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

/* Stat Number */
.promo_code .promo_stat_number {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.92px;
    color: #FE7733;
    margin: 0;
    white-space: nowrap;
}

/* Stat Text */
.promo_code .promo_stat_text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #253858;
    text-align: center;
    letter-spacing: -0.16px;
    max-width: 244px;
    margin: 0;
}

/* Stat Divider */
.promo_code .promo_stat_divider {
    width: 1px;
    height: 123px;
    background: #DFE1E6;
    flex-shrink: 0;
    /* display: none; */
}

/* World Map Section */
.promo_code .promo_world_map {
    /* margin-top: 80px; */
    position: relative;
    width: 100%;
}

.promo_code .promo_map_container {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
}

/* Map Background */
.promo_code .promo_map_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* opacity: 0.6; */
}

.promo_code .promo_map_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center; */
}

/* Map Avatars */
.promo_code .promo_map_avatar {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    box-shadow: 0px 4px 12px rgba(9, 30, 66, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.promo_code .promo_map_avatar:hover {
    transform: scale(1.1);
}

.promo_code .promo_map_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonial Card */
.promo_code .promo_map_testimonial {
    position: absolute;
    top: 8%;
    left: 44%;
    transform: translateX(-50%);
}

.promo_code .promo_testimonial_card {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0px 8px 24px rgba(9, 30, 66, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 225px;
}
.promo_code .promo_testimonial_card svg{

}
.promo_code .promo_testimonial_avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.promo_code .promo_testimonial_content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-right: 16px;
}

.promo_code .promo_testimonial_quote {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.16px;
    color: #14143C;
    margin: 0;
    white-space: nowrap;
}

.promo_code .promo_testimonial_author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
}

.promo_code .promo_author_name {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.36px;
    color: #091E42;
    margin: 0;
}

.promo_code .promo_author_title {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 400;
    line-height: normal;
    color: #253858;
    margin: 0;
}

/* Addons Section */
.promo_code .promo_addons_section {
    padding: 80px 0;
    background: url(https://www.cloudways.com/wp-content/uploads/2025/11/Section06.png) no-repeat center center/cover;
    position: relative;
}

.promo_code .promo_addons_content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

/* Addons Left Side */
.promo_code .promo_addons_left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* Addons Badge */
.promo_code .promo_addons_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 119, 51, 0.2);
    border: 1px solid #FE7733;
    border-radius: 0;
    padding: 4px 12px;
    width: fit-content;
}

.promo_code .promo_addons_badge span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FE7733;
    white-space: nowrap;
}

/* Addons Heading */
.promo_code .promo_addons_left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.2px;
    color: #FFFFFF;
    max-width: 521px;
    margin: 0;
}

/* Addons Right Side */
.promo_code .promo_addons_right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

/* Addons Description */
.promo_code .promo_addons_description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    letter-spacing: -0.16px;
    margin: 0;
}

/* Addons CTA Button */
.promo_code .promo_addons_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FE7733;
    color: #FFFFFF;
    /* font-family: 'Poppins', sans-serif; */
    font-size: 18.9px;
    font-weight: 400;
    line-height: 28.36px;
    padding: 10px 20px;
    border-radius: 4.73px;
    text-decoration: none;
    transition: background 0.3s ease;
    width: 264px;
    height: 47px;
}

.promo_code .promo_addons_cta:hover {
    background: #e66a2c;
    color: #FFFFFF;
    text-decoration: none;
}

/* Addons Cards Grid */
.promo_code .promo_addons_grid {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items:center;
    justify-content: center;
}

.promo_code .promo_addons_row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual Addon Card */
.promo_code .promo_addon_card {
    background: #FCFCFC;
    border: 1px solid #EFF0F3;
    border-radius: 10px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex: 1; */
    /* max-width: 636px; */
    gap: 20px;
}

/* Addon Info */
.promo_code .promo_addon_info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 420px;
}

/* Addon Header */
.promo_code .promo_addon_header {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Addon Icon */
.promo_code .promo_addon_icon {
    width: 36px;
    height: 36px;
    /* background: #FFFFFF; */
    /* border: 0.5px solid #DFE1E6; */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promo_code .promo_addon_icon svg {
    width: 36px;
    height: 36px;
}

/* Addon Title */
.promo_code .promo_addon_header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.2px;
    color: #091E42;
    margin: 0;
    /* white-space: nowrap; */
}

/* Addon Description */
.promo_code .promo_addon_description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #253858;
    letter-spacing: -0.16px;
    margin: 0;
}

/* Addon Pricing */
.promo_code .promo_addon_pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 112px;
    position: relative;
}

.promo_code .promo_price_starts {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.42px;
    color: #5E6C84;
    margin: 0;
    position: relative;
}

.promo_code .promo_price_starts::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 50%;
    width: 30%;
    height: 1px;
    /* background: #5E6C84; */
    transform: translateY(-180%) rotate(-20deg);
    background: #FF492C;
}

.promo_code .promo_price_current {
    display: flex;
    /* flex-direction: column; */
    /* justify-content: flex-start; */
    /* align-items: flex-end; */
}

.promo_code .promo_price_amount {
    font-family: 'Poppins', sans-serif;
    font-size: 35.412px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.0624px;
    color: #2F39BF;
}

.promo_code .promo_price_details {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.42px;
    color: #2F39BF;
    margin: 0;
}

.promo_code .heroBg{
    /* background: url(https://www.cloudways.com/wp-content/uploads/2025/11/hero_bg1.png) no-repeat center center/cover !important; */
    background: url(https://www.cloudways.com/wp-content/uploads/2025/11/Promo-Code-Hero-bg.png) no-repeat center center/cover !important;
}


/* Exclusive Offer Section */
.promo_code .promo_exclusive_section {
    padding: 80px 0;
    background: url(https://www.cloudways.com/wp-content/uploads/2025/11/hero_bg_2.png) no-repeat center center/cover;
    padding-top: 0;
    margin-top: -1px;
}

/* Exclusive Wrapper */
.promo_code .promo_exclusive_wrapper {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: center;
    /* flex-wrap: wrap; */
    gap: 80px;
}

/* Exclusive Image Section */
.promo_code .promo_exclusive_image {
    position: relative;
    width: 585px;
    /* width: 100%; */
    height: 585px;
    /* height: 100%; */
    flex-shrink: 0;
}

.promo_code .promo_exclusive_image > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Decorative Orange Icon */
.promo_code .promo_icon_orange {
    position: absolute;
    top: 19%;
    left: 11%;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.promo_code .promo_icon_orange svg {
    width: 129px;
    height: 129px;
}

/* Migration Badge */
.promo_code .promo_migration_badge {
    position: absolute;
    top: 17%;
    right: -10%;
    z-index: 4;
    width: 176px;
    height: 176px;
}

.promo_code .promo_migration_badge > svg {
    width: 100%;
    height: 100%;
}

.promo_code .promo_badge_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.promo_code .promo_badge_content svg {
    width: 42px;
    height: 42px;
}

.promo_code .promo_badge_content p {
    font-family: 'Unitea Sans', 'Poppins', sans-serif;
    font-size: 20.7px;
    font-weight: 600;
    line-height: 22.12px;
    color: white;
    margin: 0;
    text-align: center;
}

/* Customize Circle */
.promo_code .promo_customize_circle {
    position: absolute;
    bottom: 12%;
    left: 3%;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
    animation-delay: 2s;
}

.promo_code .promo_customize_circle svg {
    width: 84px;
    height: 84px;
    filter: drop-shadow(-9.91px 15.95px 24.79px rgba(30, 8, 57, 0.2));
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Exclusive Content */
.promo_code .promo_exclusive_content {
    max-width: 538px;
}

/* Exclusive Header */
.promo_code .promo_exclusive_header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

/* Exclusive Badge */
.promo_code .promo_exclusive_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 119, 51, 0.2);
    border: 1px solid #FE7733;
    border-radius: 0;
    padding: 4px 12px;
    width: fit-content;
}

.promo_code .promo_exclusive_badge span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FE7733;
    white-space: nowrap;
}

/* Exclusive Heading */
.promo_code .promo_exclusive_header h2 {
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: 40px; */
    /* font-weight: 600; */
    /* line-height: 1.2; */
    /* letter-spacing: -1.2px; */
    color: #FFFFFF;
    /* margin: 0; */
    /* white-space: nowrap; */
}

/* Exclusive Description */
.promo_code .promo_exclusive_description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #FCFCFC;
    letter-spacing: -0.16px;
    max-width: 539px;
    margin: 0;
}

/* Features List */
.promo_code .promo_exclusive_features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    /* margin-bottom: 36px; */
    min-height: 340px;
}

/* Feature Item */
.promo_code .promo_feature_item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
}

/* Feature Border (Left Line) */
.promo_code .promo_feature_border {
    width: 4px;
    height: 30px;
    background: rgba(213, 215, 242, 0.3);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: height 0.4s ease;
}

/* Border expands to 93px when active */
.promo_code .promo_feature_item.active .promo_feature_border {
    height: 93px;
}

/* Border fill animation */
.promo_code .promo_feature_border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #FE7733;
    transition: none;
}

/* Filling state - animated */
.promo_code .promo_feature_item.filling .promo_feature_border::after {
    transition: height 4s linear;
    height: 100%;
}

/* Filled state - instant (for manual clicks) */
.promo_code .promo_feature_item.filled .promo_feature_border::after {
    transition: none;
    height: 100%;
}

/* Feature Content */
.promo_code .promo_feature_content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.promo_code .promo_feature_content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.6px;
    color: #FFFFFF;
    margin: 0;
    white-space: nowrap;
    cursor: pointer;
}

/* Description paragraph - hidden by default */
.promo_code .promo_feature_content p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #FCFCFC;
    letter-spacing: -0.16px;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

/* Show description when active */
.promo_code .promo_feature_item.active .promo_feature_content p {
    max-height: 200px;
    opacity: 1;
    margin-top: 0;
}

/* CTA Section */
.promo_code .promo_exclusive_cta_section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promo_code .promo_exclusive_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FE7733;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 18.9px;
    font-weight: 400;
    line-height: 28.36px;
    padding: 10px 20px;
    border-radius: 4.73px;
    text-decoration: none;
    transition: background 0.3s ease;
    width: 265px;
    height: 47px;
}

.promo_code .promo_exclusive_cta:hover {
    background: #e66a2c;
    color: #FFFFFF;
    text-decoration: none;
}

.promo_code .promo_cta_note {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.7px;
    color: #FFFFFF;
    opacity: 0.7;
    margin: 0;
    white-space: nowrap;
}
.promo_code .exclusive_offer{
    padding: 80px 0;
    background: url(https://www.cloudways.com/wp-content/uploads/2025/11/migrate_bg.png) no-repeat center center/cover;
    padding-bottom: 0;
    overflow: hidden;
}
.promo_code .exclusive_offer h2 , .promo_code .exclusive_offer .p2-regular , .promo_code .exclusive_offer .features_list {
    color: #fff;
}

/* Hero Section */
.promo_code .promo_hero_section {
    padding: 80px 0;
    /* background: #000; */
    position: relative;
    padding-top: 160px;
    padding-bottom: 400px;
}

.promo_code .promo_hero_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* Hero Left */
.promo_code .promo_hero_left {
    flex: 0 0 54%;
    /* max-width: 644px; */
}

.promo_code .promo_hero_content {
    display: flex;
    flex-direction: column;
    /* gap: 16px; */
    margin-bottom: 42px;
}

.promo_code .promo_hero_tag {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 29.5px;
    color: #FE7733;
    margin: 0;
}

.promo_code .promo_hero_heading {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.promo_code .promo_hero_heading h1 {
    font-family: 'Unitea Sans';
    font-size: 52.7px;
    font-weight: 600;
    line-height: 71.11px;
    color: #FFFFFF;
    margin: 0;
}

.promo_code .promo_hero_heading_second {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-top: 8px; */
}

.promo_code .promo_hero_heading_second h1 {
    font-size: 58px;
    font-weight: 600;
}

.promo_code .promo_hero_intelligence {
    font-family: 'Instrument_Serif';
    font-size: 77.4px !important;
    font-style: italic;
    font-weight: 400 !important;
    line-height: 69px;
    letter-spacing: -3.87px;
    background: linear-gradient(175deg, #f7f7f7 53.94%, #ffa97d 65.3%, #cdc2ff 75.5%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    padding-right: 5px;
}

.promo_code .promo_hero_description {
    color: #FFFFFF;
    /* opacity: 0.7; */
    max-width: 560px;
    margin: 0;
    margin-top: 15px;
}

/* Hero Actions */
.promo_code .promo_hero_actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.promo_code .promo_hero_timer_wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 458px;
}

.promo_code .promo_hero_timer {
    background: #000;
    border: 1px solid #B2A1FF;
    border-radius: 2.73px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 7.6px;
    position: relative;
    box-shadow: 0 0 0 5.4px rgba(178, 161, 255, 0.3);
}

.promo_code .promo_timer_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-width: 38px;
}

.promo_code .promo_timer_value {
    font-family: 'Unitea Sans', 'Poppins', sans-serif;
    font-size: 31.6px;
    font-weight: 600;
    line-height: 43.18px;
    letter-spacing: 0.63px;
    text-transform: uppercase;
    background: linear-gradient(175deg, #F7F7F7 53.94%, #FFA97D 65.3%, #CDC2FF 75.5%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo_code .promo_timer_label {
    font-family: 'Unitea Sans', 'Poppins', sans-serif;
    font-size: 9.83px;
    font-weight: 400;
    line-height: normal;
    color: #8993A4;
    text-align: center;
}

.promo_code .promo_timer_separator {
    font-family: 'Unitea Sans', 'Poppins', sans-serif;
    font-size: 31.6px;
    font-weight: 600;
    line-height: 43.18px;
    letter-spacing: 0.63px;
    text-transform: uppercase;
    background: linear-gradient(175deg, #F7F7F7 53.94%, #FFA97D 65.3%, #CDC2FF 75.5%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo_code .promo_hero_cta {
    background: #FE7733;
    border: none;
    border-radius: 4.24px;
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 27.5px;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    box-shadow: 0px 1.64px 1.64px 0px rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.promo_code .promo_hero_cta:hover {
    background: #e66a2c;
    color: #FFFFFF;
    text-decoration: none;
}

/* Hero Trust */
.promo_code .promo_hero_trust {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.promo_code .promo_trust_item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo_code .promo_trust_rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo_code .promo_trust_rating svg {
    width: 126px;
    height: 24px;
}

.promo_code .promo_trust_text {
    color: #C1C7D0;
    margin: 0;
    white-space: nowrap;
}

.promo_code .promo_trust_text strong {
    color: #EFF0F3;
    font-weight: 700;
}

.promo_code .promo_g2_logo {
    width: 26px;
    height: 26px;
}

.promo_code .promo_trust_divider {
    width: 1px;
    height: 22px;
    background: #C1C7D0;
    /* opacity: 0.3; */
    /* transform: rotate(90deg); */
}

/* Hero Right */
.promo_code .promo_hero_right {
    flex: 0 0 42%;
    max-width: 541px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.promo_code .promo_hero_right  svg{
    width: 100%;
}

.promo_code .promo_hero_offer {
    width: 100%;
    display: flex;
    justify-content: center;
}

.promo_code .promo_offer_image {
    width: 100%;
    max-width: 518px;
    height: auto;
}

.promo_code .promo_hero_offer_divider {
    width: 524px;
    height: 2px;
    background: linear-gradient(175deg, #F7F7F7 53.94%, #FFA97D 65.3%, #CDC2FF 75.5%);
}

.promo_code .promo_hero_offer_text {
    /* font-family: 'Excon', 'Poppins', sans-serif; */
    font-size: 31.5px;
    font-weight: 300;
    line-height: 41.89px;
    letter-spacing: 0.63px;
    text-align: center;
    text-transform: capitalize;
    /* background: linear-gradient(175deg, #F7F7F7 53.94%, #FFA97D 65.3%, #CDC2FF 75.5%); */
    /* -webkit-background-clip: text; */
    /* background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    margin: 0;
    /* max-width: 488px; */
    color: #fff;
}

.all_other_customers .wt_prc25_main_wrap .wt_prc25_v1 .wt_prc25_pricing_cards_header_tabs .wt_prc25_server_type_tabs .wt_prc25_server_type_tabs_list li:nth-child(1) a{
    /* display: none; */
}
.all_other_customers .wt_prc25_main_wrap li:nth-child(1) .supp_scp_slaBtn svg{
    display: none;
}

/* globe  */

.promo_world_map .promo_map_container .pic{
    position: absolute;
    border-radius: 100%;
}
.promo_world_map .promo_map_container .pic img{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo_world_map .promo_map_container  .pic_1{
    border: 3px solid #CEE0FF;
    /* max-width: 41.196px; */
    max-width: 24.717px;
    max-height: 24.66px;
    width: 100%;
    /* max-height: 41.1px; */
    height: 100%;
    top: 66%;
    left: 31%;
}
.promo_world_map .promo_map_container .pic_2{
    max-width: 24.717px;
    max-height: 24.66px;
    width: 100%;
    height: 100%;
    border: 3px solid #FFD9C9;
    top: 68%;
    left: 24%;
}
.promo_world_map .promo_map_container  .pic_3{
    /* max-width: 41.196px; */
    width: 100%;
    /* max-height: 41.101px;   */
    max-width: 24.717px;
    max-height: 24.66px;
    height: 100%;
    border: 3px solid #FFE4C3;
    top: 46%;
    left: 27%;
}
.promo_world_map .promo_map_container  .pic_4{
    /* max-width: 41.196px; */
    max-width: 24.717px;
    max-height: 24.66px;
    width: 100%;
    /* max-height: 41.101px; */
    height: 100%;
    border: 3px solid #FFE4C3;
    top: 50%;
    left: 33%;

}
.promo_world_map .promo_map_container  .pic_5{
    /* max-width: 41.196px; */
    /* max-height: 41.101px; */
    max-width: 24.717px;
    max-height: 24.66px;
    width: 100%;
    height: 100%;
    border: 3px solid #FFE4C3;
    top: 40%;
    left: 41%;
}
.promo_world_map .promo_map_container  .pic_6{
    /* max-width: 29.867px; */
    /* max-height: 29.798px; */
    max-width: 24.717px;
    max-height: 24.66px;
    width: 100%;
    height: 100%;
    border: 3px solid #FFE4C3;
    top: 68%;
    left: 50%;
}
.promo_world_map .promo_map_container  .pic_7{
    /* max-width: 41.196px; */
    /* max-height: 41.1px; */
    max-width: 24.717px;
    max-height: 24.66px;
    width: 100%;
    height: 100%;
    border: 3px solid #FFE4C3;
    top: 55%;
    left: 63%;
}
.promo_world_map .promo_map_container  .pic_8{
    /* max-width: 29.867px; */
    /* max-height: 29.798px; */
    max-width: 24.717px;
    max-height: 24.66px;
    width: 100%;
    height: 100%;
    border: 3px solid #FFE4C3;
    top: 49%;
    left: 70%;
}
.promo_world_map .promo_map_container  .pic_9{
    /* max-width: 26.777px; */
    /* max-height: 26.715px; */
    max-width: 24.717px;
    max-height: 24.66px;
    width: 100%;
    height: 100%;
    border: 3px solid #FFE4C3;
    top: 40%;
    left: 57%;
}
.promo_world_map .promo_map_container  .pic_10{
    /* max-width: 41.196px; */
    /* max-height: 41.101px; */
    max-width: 24.717px;
    max-height: 24.66px;
    width: 100%;
    height: 100%;
    border: 3px solid #FFE4C3;
    top: 32%;
    left: 62%;
}
.promo_world_map .promo_map_container  .pic_11{
    max-width: 29.867px;
    max-height: 29.798px;
    width: 100%;
    height: 100%;
    border: 3px solid #FFE4C3;
    top: 68%;
    left: 58%;
}
.promo_world_map .promo_map_container  .pic_12{
    max-width: 29.867px;
    max-height: 29.798px;
    width: 100%;
    height: 100%;
    border: 3px solid #FFE4C3;
    top: 32%;
    left: 48%;
}
.promo_world_map .promo_map_container  .pic_13{
    max-width: 29.867px;
    max-height: 29.798px;
    width: 100%;
    height: 100%;
    border: 3px solid #FFE4C3;
    top: 60%;
    left: 75%;
}
.promo_world_map .promo_map_container  .pic_14{
    max-width: 29.867px;
    max-height: 29.798px;
    width: 100%;
    height: 100%;
    border: 3px solid #FFE4C3;
    top: 70%;
    left: 69%;
}
.promo_world_map .promo_map_container  .pic_15{
    max-width: 29.867px;
    max-height: 29.798px;
    width: 100%;
    height: 100%;
    border: 3px solid #FFE4C3;
    top: 45%;
    left: 50%;
}

/* Testimonial Popup Styles */
.promo_code .promo_map_testimonial{

}
.promo_code .promo_map_testimonial {
    position: absolute;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    z-index: 100;
}

.promo_code .promo_map_testimonial.active {
    opacity: 1;
    transform: translate(-50%, -22%) scale(1);
}

/* Red Dot Indicator */
.promo_code .promo_map_dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #FF492C;
    border-radius: 50%;
    /* top: -8px; */
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(255, 73, 44, 0.4);
    display: none;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 73, 44, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 73, 44, 0);
    }
}

/* Testimonial Card */
.promo_code .promo_testimonial_card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2px;
    box-shadow: 0px 8px 24px rgba(9, 30, 66, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 450px;
    width: max-content;
    min-height: 110px;
    position: relative;
    top: -106px;
    left: 23%;
    background: #fff;
    border: 2px solid #F4CDB9;
}

/* Inner white background */
.promo_code .promo_testimonial_card::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    /* background: #FFFFFF; */
    border-radius: 10px;
    z-index: 0;
}

/* Make content above background */
.promo_code .promo_testimonial_card > * {
    position: relative;
    z-index: 1;
}

/* Rectangular Pointer at Bottom with Gradient Border */
.promo_code .promo_testimonial_card::after {
    content: '';
    position: absolute;
    bottom: -9.5px;
    left: 24%;
    transform: translateX(-50%);
    /* width: 24px; */
    width: 19px;
    /* height: 12px; */
    height: 19px;
    /* background: linear-gradient(135deg, #B2A1FF 0%, #FE7733 50%, #B2A1FF 100%); */
    /* clip-path: polygon(0 0, 100% 0, 50% 100%); */
    z-index: 2;
    border-top: 3px solid #fff;
    background: #fff;
    transform: rotate(45deg);
    border: 2px solid #F4CDB9;
    border-top-color: #fff;
    border-left-color: #fff;
}

.promo_code .promo_testimonial_avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #FFFFFF;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    margin-right: 0;
}

.promo_code .promo_testimonial_content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex: 1;
    max-width: 350px;
}

.promo_code .promo_testimonial_quote {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.16px;
    color: #14143C;
    margin: 0;
    white-space: normal;
    word-wrap: break-word;
}

.promo_code .promo_testimonial_author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 2px;
}

.promo_code .promo_author_name {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.36px;
    color: #091E42;
    margin: 0;
    white-space: normal;
    word-wrap: break-word;
}

.promo_code .promo_author_title {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.3;
    color: #253858;
    margin: 0;
    opacity: 0.8;
    white-space: normal;
    word-wrap: break-word;
}
.all_other_customers .red_gradient{
    border-radius: 539.784px;
background:  #FE7733;
filter: blur(58.67036056518555px);
width: 539.784px;
height: 264.151px;
transform: rotate(137.348deg);
position: absolute;
right: -200px;
    bottom: -270px;
}
.promo_code.home_hero.cw_copilot_uplift .cw_copilot_home_banner{
    align-items: flex-start !important;
    margin: 0 !important;
}
/* FeatsStatsSec logos start */

.FeatsStatsSec {
    /* padding-bottom: 64px; */
  }
  
  .FeatsStatsSec .FeatsStatsHeading h5 {
    color: #253858;
    margin-bottom: 42px;
    letter-spacing: -0.72px;
  }
  
  .FeatsStatsSec .FeatsStatsHeading h5 b {
    font-weight: 600;
    border-radius: 5px;
    background: linear-gradient(
      89deg,
      rgba(255, 255, 255, 0) -5.07%,
      rgba(255, 181, 181, 0.39) 30.61%,
      rgba(231, 178, 236, 0) 109.47%
    );
    font-size: 24px;
    padding: 3px 5px;
  }
  
  .FeatsStatsSec .FeatsStatsOwlSldrWrap .owl-stage-outer .owl-stage {
    width: 1900px;
  }
  
  .FeatsStatsSec
    .FeatsStatsOwlSldrWrap
    .FeatsStatsOwl-carousel
    .FeatsStatsOwlSldrContentBox
    .tesmonialContent {
    margin: 0 20px;
  }
  
  .FeatsStatsSec .slick-slide {
    margin: 0;
  }
  
  .FeatsStatsSec .slick-slide img {
    margin-bottom: 0;
  }
  
  .FeatsStatsOwlSldrWrap {
    max-width: 1100px;
    margin: 0 auto;
  }
  .promo_code .FeatsStatsOwlSldrWrap{
    max-width: 100%;
  }
  .promo_code .promo_price_details_resp{
    display: none;
  }
  .cw_bfcm_deals_main.bfcm_deals25.all_other_customers .heroBg{
    background: url(https://www.cloudways.com/wp-content/uploads/2025/11/hero-Background.png) no-repeat #000 center bottom ;
    background-size: cover;
    padding: 0;
  }  

/* timmer    */

  .bfcmHellobar25
  .hellobarInner:not(.hellobarInnerWithTimer)
  .bfcmtimerwrap {
  display: none;
}

 .bfcmtimerwrap {
  overflow: hidden;
  padding: 1px;
  border-radius: 2.469px;
  position: relative;
  display: inline-block;
  box-shadow: -2px 0px 20px 0px rgb(251 122 60 / 20%),
    2px 0px 20px rgb(182 159 247 / 30%);
}

.bfcmtimerwrap .borderAnimate {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: linear-gradient(216deg, #b2a1ff, #fe7733);
  background-size: 100% 100%;
  border-radius: 2.45px;
  z-index: -1;
  /* box-shadow: 
    0 0 15px 3px #B2A1FF,
    0 0 25px 6px #FE7733 */
  /* animation: gradientBorder 6s ease infinite; */
  /* filter: blur(12px); glowing shadow */
}
.bfcmtimerwrap::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 50%;
  background: #fe77337d;
  filter: blur(22px);
  border-radius: 6px;
  z-index: -1;
  box-shadow: 0 1.631px 1.631px 0 #fe773340;
}

 .bfcmtimerwrap::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 8px;
  bottom: 8px;
  width: 50%;
  background: #b2a1ff7d;
  filter: blur(22px);
  border-radius: 6px;
  z-index: -1;
  box-shadow: 0 1.631px 1.631px 0 #b2a1ff40;
}

 .bfcmtimerwrap .clounterMainDiv {
  margin: 0;
  list-style-type: none;
  display: flex;
  padding: 6px 12px;
  position: relative;
  z-index: 1;
  border-radius: 3px;
  /* border: 0.868px solid #B2A1FF; */
  background: #000;
  backdrop-filter: blur(3.467979669570923px);
  background: #050625;
  min-width: 280px;
  justify-content: center;
  /* box-shadow: 0 1.631px 1.631px 0 rgba(0, 0, 0, 0.25); */
}

 .bfcmtimerwrap .clounterMainDiv li .countTxt {
  margin: 0 0 0;
  font-family: "Unitea Sans";
  /* font-size: 28.543px; */
  font-style: normal;
  font-weight: 600;
  line-height: 33.004px;
  font-size: 33.58px;
  /* line-height: 45.886px; 136.647% */
  letter-spacing: 0.672px;
  /* letter-spacing: 0.571px; */
  text-transform: capitalize;
  background: linear-gradient(1deg, #987fc4 -12.87%, #fff 18.79%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


  .hellobarInnerWithTimer
  .bfcmtimerwrap
  .clounterMainDiv
  li
  .countTxt {
  width: 40px;
}

 .bfcmtimerwrap .clounterMainDiv li .counterpara {
  margin: 0;
  color: #8993a4;
  text-align: center;
  font-family: "Unitea Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.bfcmtimerwrap .clounterMainDiv li .counter {
  text-align: center;
  position: relative;
  padding: 0 18px;
}

 .bfcmtimerwrap .clounterMainDiv li .counter:before {
  content: ":";
  font-family: "Unitea Sans";
  font-size: 28.543px;
  font-style: normal;
  font-weight: 600;
  line-height: 39.004px; /* 136.647% */
  letter-spacing: 0.571px;
  position: absolute;
  color: #fff;
  right: 0;
  top: 0;
}


  .hellobarInnerWithTimer
  .bfcmtimerwrap
  .clounterMainDiv
  li
  .counter:before {
  right: -3px;
}

.bfcmtimerwrap .clounterMainDiv li:first-child .counter {
  padding-left: 0;
}
.bfcmtimerwrap .clounterMainDiv li:last-child .counter {
  padding-right: 0;
}
 .bfcmtimerwrap .clounterMainDiv li:last-child .counter:before {
  display: none;
}
/* .bfcmtimerwrap {
    display: none;
  } */

  .bfcm2024Popupsec
  .popupInnerWrap
  .bfcmtimerwrap
  .clounterMainDiv
  li
  .countTxt {
  font-size: 25.759px;
  line-height: 26.198px; /* 136.647% */
  width: 30px;
}

.bfcmtimerwrap .timerWrap {
  display: flex;
  align-items: center;
  background: #050625;
  padding: 0px 12px 0px 0;
  /* gap: 20px; */
}

.bfcmtimerwrap .timerWrap .cw_bfcm25_gbl_btn {
  padding: 12px 25px;
}

 .bfcm2024Popupsec .popupInnerWrap .clounterMainDiv {
  width: 236px;
  min-width: 236px;
}


  .bfcm2024Popupsec
  .popupInnerWrap
  .bfcmtimerwrap
  .clounterMainDiv
  li
  .counter {
  padding: 0px 18px 0 12px;
}

  .bfcm2024Popupsec
  .popupInnerWrap
  .bfcmtimerwrap
  .clounterMainDiv {
  padding: 10px 12px;
}


  .bfcm2024AffiliatePopupsec
  .bfcmtimerwrap
  .timerWrap
  .cw_bfcm25_gbl_btn {
  padding: 12px 8px;
  font-size: 13px;
}

  .home_hero.bfcm25_home_hero
  .cw_copilot_home_banner
  .bfcmtimerwrap
  .timerWrap {
  padding: 0px 20px 0px 0;
}

  .home_hero.bfcm25_home_hero
  .cw_copilot_home_banner
  .bfcmtimerwrap
  .clounterMainDiv {
  padding: 6px 20px 10px;
}

  .home_hero.bfcm25_home_hero
  .cw_copilot_home_banner
  .bfcmtimerwrap
  .clounterMainDiv
  li
  .countTxt {
  font-size: 29.806px;
  line-height: 40.728px;
}

  .home_hero.bfcm25_home_hero
  .cw_copilot_home_banner
  .bfcmtimerwrap
  .timerWrap {
  padding: 0px 20px 0px 0;
}

  .home_hero.bfcm25_home_hero
  .cw_copilot_home_banner
  .bfcmtimerwrap
  .clounterMainDiv {
  padding: 12px 20px 8px;
}

  .home_hero.bfcm25_home_hero
  .cw_copilot_home_banner
  .bfcmtimerwrap
  .clounterMainDiv
  li
  .countTxt {
  font-size: 29.806px;
  line-height: 29px;
  width: 36px;
}
.bfcmtimerwrap .clounterMainDiv li .counter {
    perspective: 200px;
  }
  
.bfcmtimerwrap .clounterMainDiv li .countTxt {
    position: relative;
    display: block;
    transform-style: preserve-3d;
    transition: transform 0.6s;
  }
  
 .bfcmtimerwrap .clounterMainDiv li .countTxt.flip {
    animation: pop 0.6s ease-in-out;
  }
  .cw_bfcm25_gbl_btn {
    font-weight: 700;
    color: #fff;
    font-family: "Unitea Sans";
    text-transform: uppercase;
    letter-spacing: 0.26px;
    display: inline-block;
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    text-align: center;
    border-radius: 4px;
    background: #fe7733;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
    text-decoration: none !important;
  }
  .cw_bfcm25_gbl_btn::before{
    content: '';
    position: absolute;
    left: var(--x, 50%);
    top: var(--y, 50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #faae88 10%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    border-radius: 50%;
    opacity: 1;
    pointer-events: none;
    z-index: -1;
  }
  .cw_bfcm25_gbl_btn:hover::before {
    transform: translate(-50%, -50%) scale(1.2);
    text-decoration: none;
  }
  .home_hero.bfcm25_home_hero .cw_copilot_home_banner .textWrap h2 span {
    text-align: center;
    font-family: "Instrument_Serif";
    font-size: 52.783px;
    font-style: italic;
    font-weight: 400;
    line-height: 47.08px;
    letter-spacing: -2.639px;
    padding-right: 10px;
    letter-spacing: -2px;
    background: linear-gradient(175deg, #f7f7f7 53.94%, #ffa97d 65.3%, #cdc2ff 75.5%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* timmer  */
  /*FeatsStatsSec logo end */

@media (max-width:1300px) {
    /* .stepper .step .logo::after {
        width: 120px;
        right: -140px;
    } */
    
    /* Best Offer Responsive */
    .bestOffer_wrapper {
        gap: 40px;
    }
    
    .bestOffer_left {
        flex: 0 0 48%;
    }
    
    .bestOffer_right {
        flex: 0 0 48%;
    }
    
    /* Pricing Section Responsive */
    .pricing_features {
        /* gap: 12px; */
    }
    
    /* Claim Offer Section Responsive */
    .claim_offer_content h2 {
        max-width: 100%;
    }
    
    .claim_offer_content .p2-regular {
        max-width: 100%;
    }
    
    /* Offer Cards Responsive */
    .offer_cards_wrapper {
        gap: 20px;
    }
    
    .offer_card {
        flex: 0 0 calc(50% - 10px);
    }
    .stepper .step .logo::after{
        right: -185px;
        width: 170px;
    }
}

@media (max-width: 1200px) {
    .promo_code .promo_pricing_cards {
        grid-template-columns: 1fr;
    }
    .promo_code .promo_hero_wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .stepper .step .logo::after {
        width: 110px;
        right: -120px;
    }
    /* .promo_code .promo_exclusive_wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    } */
    .promo_code .promo_hero_heading_second{
        justify-content: center;
    }
    .promo_code .promo_hero_description{
        text-align: center;
        margin: auto;
        margin-top:15px ;
    }
    .promo_code .promo_hero_heading h1{
        text-align: center;
    }
    .promo_code .promo_hero_actions{
        align-items:center ;
    }
    
}
@media (max-width: 1145px) {
    /* .stepper .step .logo::after {
        right: initial;
        width: 1px;
        height: 51px;
        top: 198%;
    } */
    
}


@media (max-width: 992px) {
    .stepper .step .logo::after {
        right: initial;
        width: 1px;
        height: 51px;
        top: 198%;
    } 
    .stepper {
        flex-direction: column;
        gap: 65px;
        align-items: center;
        justify-content: center;
    }

    .stepper .step .logo::before {
        content: "";
        background: none;
    }

    .stepper .step .logo::after {
        content: "";
        background: #fff;
    }

    .stepper .step {
        align-items: center;
    }

    .stepper .step .textWrap {
        text-align: center;
    }
    
    /* Best Offer Responsive */
    .bestOffer_wrapper {
        flex-direction: column-reverse;
        gap: 50px;
    }
    
    .bestOffer_left,
    .bestOffer_right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .illustration_container {
        height: 450px;
    }
    
    .badge_migration {
        right: -5%;
        top: 15%;
    }
    
    .badge_star {
        width: 140px;
        height: 140px;
    }
    
    .badge_content p {
        font-size: 17px;
        line-height: 19px;
    }
    
    .bestOffer_right h2 {
        font-size: 32px;
    }
    
    /* Grow Smart Scale Responsive */
    .grow_smart_scale {
        padding: 80px 0;
    }
    
    .grow_smart_scale .main_heading h1 {
        font-size: 48px;
        line-height: 58px;
    }
    
    .grow_smart_scale .italic_gradient {
        font-size: 60px;
        line-height: 54px;
    }
    
    /* Pricing Section Responsive */
    .pricing_section {
        padding: 60px 0;
    }
    
    .pricing_header {
        /* margin-bottom: 40px; */
    }
    
    .pricing_features {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Promo Code Pricing Responsive */
    .promo_code .promo_pricing_section {
        padding: 60px 0;
    }
    
    .promo_code .promo_pricing_header {
        margin-bottom: 40px;
    }
    
    .promo_code .promo_pricing_header h2 {
        font-size: 32px;
        max-width: 100%;
    }
    
    .promo_code .promo_pricing_description {
        max-width: 100%;
    }
    
    /* Promo Pricing Cards Responsive 992px */
    .promo_code .promo_pricing_cards {
        gap: 20px;
        margin-top: 50px;
    }
    
    .promo_code .promo_pricing_card {
        padding: 30px;
        min-height: 350px;
    }
    
    .promo_code .promo_card_title h3 {
        font-size: 20px;
        letter-spacing: -0.6px;
    }
    
    .promo_code .promo_card_description {
        font-size: 15px;
    }
    
    .promo_code .promo_price_old {
        font-size: 26px;
    }
    
    .promo_code .promo_price_new {
        font-size: 36px;
    }
    
    .promo_code .promo_card_mockup {
        right: -111px;
        width: 400px;
    }
    
    /* Client Logos Responsive 992px */
    .promo_code .promo_client_logos {
        margin-top: 60px;
        gap: 50px;
    }
    
    .promo_code .promo_logos_wrapper {
        gap: 30px;
    }
    
    .promo_code .promo_logos_wrapper img {
        /* height: 30px; */
        height: 20px;
    }
    
    /* Stats Section Responsive 992px */
    .promo_code .promo_stats_section {
        padding: 60px 0;
        padding-bottom: 0;
    }
    
    .promo_code .promo_stats_header h2 {
        font-size: 32px;
        max-width: 100%;
    }
    
    .promo_code .promo_stats_description {
        max-width: 100%;
    }
    
    .promo_code .promo_stats_grid {
        gap: 36px;
    }
    
    .promo_code .promo_stat_number {
        font-size: 52px;
        letter-spacing: -1.56px;
    }
    
    .promo_code .promo_stat_text {
        font-size: 15px;
    }
    
    .promo_code .promo_stat_divider {
        height: 100px;
    }
    
    /* World Map Responsive 992px */
    .promo_code .promo_world_map {
        /* margin-top: 60px; */
    }
    
    .promo_code .promo_map_container {
        /* height: 450px; */
    }
    
    .promo_code .promo_map_avatar {
        width: 36px;
        height: 36px;
        border-width: 2px;
    }
    
    .promo_code .promo_testimonial_card {
        min-width: 200px;
    }
    
    .promo_code .promo_testimonial_avatar {
        width: 48px;
        height: 48px;
    }
    
    .promo_code .promo_testimonial_quote {
        font-size: 14px;
    }
    
    .promo_code .promo_author_name {
        font-size: 11px;
    }
    
    /* Addons Section Responsive 992px */
    .promo_code .promo_addons_section {
        padding: 60px 0;
    }
    
    .promo_code .promo_addons_content {
        gap: 30px;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }
    .promo_code .promo_addons_right{
        max-width: 720px;
    }
    
    .promo_code .promo_addons_left h2 {
        font-size: 32px;
        max-width: 100%;
    }
    
    .promo_code .promo_addons_description {
        max-width: 100%;
    }
    
    .promo_code .promo_addons_cta {
        /* width: 220px; */
    }
    
    /* Addons Cards Responsive 992px */
    .promo_code .promo_addon_card {
        padding: 20px 24px;
        max-width: 100%;
    }
    
    .promo_code .promo_addon_header h3 {
        font-size: 18px;
    }
    
    .promo_code .promo_addon_description {
        font-size: 15px;
    }
    
    .promo_code .promo_price_amount {
        font-size: 30px;
        letter-spacing: -0.9px;
    }
    
    /* Exclusive Offer Responsive 992px */
    .promo_code .promo_exclusive_section {
        /* padding: 60px 0; */
    }
    
    .promo_code .promo_exclusive_wrapper {
        gap: 60px;
    }
    
    .promo_code .promo_exclusive_image {
        width: 480px;
        height: 480px;
    }
    
    .promo_code .promo_icon_orange svg {
        width: 100px;
        height: 100px;
    }
    
    .promo_code .promo_migration_badge {
        width: 140px;
        height: 140px;
    }
    
    .promo_code .promo_badge_content p {
        font-size: 17px;
        line-height: 19px;
    }
    
    .promo_code .promo_customize_circle svg {
        width: 70px;
        height: 70px;
    }
    
    .promo_code .promo_exclusive_header h2 {
        font-size: 32px;
        white-space: normal;
    }
    
    .promo_code .promo_exclusive_description {
        max-width: 100%;
    }
    
    .promo_code .promo_feature_content h3 {
        font-size: 18px;
    }
    
    .promo_code .promo_feature_content p {
        font-size: 15px;
    }
    
    .promo_code .promo_feature_highlighted .promo_feature_border {
        /* height: 80px; */
    }
    
    .promo_code .promo_exclusive_cta {
        width: 240px;
    }
    
    .cw_bfcm_deals_main.bfcm_deals25.all_other_customers .ppcNavBar .ppc-hdr-wrap .ppc-nav a{
        font-size: 12px;

    }
    .cw_bfcm_deals_main.bfcm_deals25.all_other_customers .ppcNavBar .ppc-hdr-wrap .ppc-nav .global_btn{
        min-width: 110px;
        padding: 12px 16px;
    }
    .promo_code .promo_exclusive_wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .promo_code .bestOffer_wrapper{
        flex-direction: column  !important;
    }
    
    /* Hero Section Responsive 992px */
    .promo_code .promo_hero_section {
        /* padding: 60px 0; */
    }
    
    .promo_code .promo_hero_wrapper {
        gap: 40px;
    }
    
    .promo_code .promo_hero_heading h1 {
        font-size: 42px;
        line-height: 56px;
    }
    
    .promo_code .promo_hero_heading_second h1 {
        font-size: 48px;
    }
    
    .promo_code .promo_hero_intelligence {
        font-size: 62px !important;
        line-height: 56px;
    }
    
    .promo_code .promo_hero_description {
        max-width: 100%;
    }
    
    .promo_code .promo_hero_timer_wrapper {
        flex-wrap: wrap;
    }
    .promo_code .promo_addons_row {
        flex-direction: column;
        gap: 20px;
        grid-template-columns: 1fr;
    }
    .promo_code .promo_price_starts::after{

    }
    .cw_bfcm_deals_main.bfcm_deals25.all_other_customers .wt_prc25_main_wrap .wt_prc25_v1 .upperTabs .mainTabs .server_pricing_tabs li{
        min-width: 233px;
    }
}


@media (max-width: 776px) {

    .stepper {
        padding: 0px;
    }
    
    /* Best Offer Responsive */
    .bestOffer {
        padding: 60px 0;
    }
    
    .illustration_container {
        height: 400px;
    }
    
    .icon_1, .icon_2 {
        width: 36px;
        height: 36px;
    }
    
    .icon_customize .customize_circle {
        width: 70px;
        height: 70px;
    }
    
    .badge_migration {
        right: 0;
        top: 12%;
    }
    
    .badge_star {
        width: 130px;
        height: 130px;
    }
    
    .content_wrapper {
        gap: 24px;
    }
    
    /* Grow Smart Scale Responsive */
    .grow_smart_scale {
        padding: 60px 0;
    }
    
    .grow_smart_scale .main_heading h1 {
        font-size: 36px;
        line-height: 44px;
    }
    
    .grow_smart_scale .italic_gradient {
        font-size: 45px;
        line-height: 40px;
    }
    
    .grow_smart_scale .main_heading .second_line {
        flex-direction: column;
        gap: 5px;
    }
    
    /* Promo Code Pricing Section Responsive 776px */
    .promo_code .promo_pricing_header h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .promo_code .promo_pricing_description {
        font-size: 15px;
    }
    
    /* Promo Pricing Cards Responsive 776px */
    .promo_code .promo_pricing_cards {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }
    
    .promo_code .promo_pricing_card {
        padding: 40px 30px;
        min-height: 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .promo_code .promo_card_content {
        max-width: 100%;
    }
    
    /* Client Logos Responsive 776px */
    .promo_code .promo_client_logos {
        margin-top: 50px;
        gap: 40px;
    }
    
    .promo_code .promo_client_heading {
        font-size: 18px;
    }
    
    .promo_code .promo_logos_wrapper {
        /* gap: 40px; */
        gap: ;
    }
    
    .promo_code .promo_logos_wrapper img {
        height: 16px;
    }
    
    /* Stats Section Responsive 776px */
    .promo_code .promo_stats_section {
        padding: 50px 0;
        padding-bottom: 0;
    }
    
    .promo_code .promo_stats_header {
        margin-bottom: 30px;
    }
    
    .promo_code .promo_stats_header h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .promo_code .promo_stats_description {
        font-size: 15px;
    }
    
    .promo_code .promo_stats_grid {
        flex-direction: column;
        gap: 30px !important;
        margin-bottom: 0;
    }
    
    .promo_code .promo_stat_number {
        font-size: 48px;
        letter-spacing: -1.44px;
    }
    
    .promo_code .promo_stat_text {
        max-width: 300px;
    }
    
    .promo_code .promo_stat_divider {
        width: 200px;
        height: 1px;
    }
    
    /* World Map Responsive 776px */
    .promo_code .promo_world_map {
        /* margin-top: 50px; */
    }
    
    .promo_code .promo_map_container {
        /* height: 400px; */
    }
    
    .promo_code .promo_map_avatar {
        width: 32px;
        height: 32px;
    }
    
    .promo_code .promo_testimonial_card {
        min-width: 180px;
        gap: 4px;
    }
    
    .promo_code .promo_testimonial_avatar {
        width: 42px;
        height: 42px;
    }
    
    .promo_code .promo_testimonial_quote {
        font-size: 13px;
    }
    
    .promo_code .promo_author_name {
        font-size: 10px;
    }
    
    .promo_code .promo_author_title {
        font-size: 7px;
    }
    
    /* Addons Section Responsive 776px */
    .promo_code .promo_addons_section {
        padding: 50px 0;
    }
    
    .promo_code .promo_addons_content {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    
    .promo_code .promo_addons_left h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .promo_code .promo_addons_description {
        font-size: 15px;
    }
    
    .promo_code .promo_addons_cta {
        width: 100%;
        max-width: 300px;
    }
    
    /* Addons Cards Responsive 776px */
    .promo_code .promo_addons_row {
        flex-direction: column;
        gap: 20px;
    }
    
    .promo_code .promo_addon_card {
        max-width: 100%;
    }
    
    .promo_code .promo_addon_info {
        max-width: 100%;
    }
    
    .promo_code .promo_addon_header h3 {
        font-size: 16px;
        white-space: normal;
    }
    
    .promo_code .promo_addon_description {
        font-size: 14px;
    }
    
    .promo_code .promo_price_amount {
        font-size: 28px;
    }
    
    /* Exclusive Offer Responsive 776px */
    .promo_code .promo_exclusive_section {
        /* padding: 50px 0; */
    }
    
    .promo_code .promo_exclusive_wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .promo_code .promo_exclusive_image {
        width: 100%;
        max-width: 450px;
        height: 450px;
    }
    
    .promo_code .promo_icon_orange svg {
        width: 80px;
        height: 80px;
    }
    
    .promo_code .promo_migration_badge {
        width: 120px;
        height: 120px;
        right: -5%;
    }
    
    .promo_code .promo_badge_content p {
        font-size: 15px;
        line-height: 17px;
    }
    
    .promo_code .promo_badge_content svg {
        width: 36px;
        height: 36px;
    }
    
    .promo_code .promo_customize_circle svg {
        width: 60px;
        height: 60px;
    }
    
    .promo_code .promo_exclusive_content {
        max-width: 100%;
    }
    
    .promo_code .promo_exclusive_header h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .promo_code .promo_exclusive_description {
        font-size: 15px;
    }
    
    .promo_code .promo_feature_content h3 {
        font-size: 16px;
        white-space: normal;
    }
    
    .promo_code .promo_feature_content p {
        font-size: 14px;
    }
    
    .promo_code .promo_feature_highlighted .promo_feature_border {
        /* height: 70px; */
    }
    
    .promo_code .promo_exclusive_cta {
        width: 100%;
        max-width: 300px;
    }
    
    .cw_bfcm_deals_main.bfcm_deals25.all_other_customers .ppc-hdr-wrap nav{
        top: -10px;
    }
    .cw_bfcm_deals_main.bfcm_deals25.all_other_customers .ppcNavBar .ppc-hdr-wrap nav{
        padding: 0px;
    }
    .cw_bfcm_deals_main.bfcm_deals25.all_other_customers .ppc-hdr-wrap nav .ppc-value-hdr-cw-logo{
        margin-top: 0px;
    }
    
    /* Claim Offer Section Responsive */
    .claim_offer_section {
        padding: 60px 0;
    }
    
    /* Offer Cards Responsive */
    .offer_cards_wrapper {
        flex-direction: column;
        margin-top: 40px;
    }
    
    .offer_card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Hero Section Responsive 776px */
    .promo_code .promo_hero_section {
        /* padding: 50px 0; */
    }
    
    .promo_code .promo_hero_wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .promo_code .promo_hero_left,
    .promo_code .promo_hero_right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .promo_code .promo_hero_tag {
        font-size: 18px;
        line-height: 26px;
    }
    
    .promo_code .promo_hero_heading h1 {
        font-size: 36px;
        line-height: 46px;
    }
    
    .promo_code .promo_hero_heading_second h1 {
        font-size: 38px;
    }
    
    .promo_code .promo_hero_intelligence {
        font-size: 52px !important;
        line-height: 46px;
        letter-spacing: -2.6px;
    }
    
    .promo_code .promo_hero_timer {
        padding: 12px;
    }
    
    .promo_code .promo_timer_value {
        font-size: 26px;
        line-height: 36px;
    }
    
    .promo_code .promo_timer_separator {
        font-size: 26px;
        line-height: 36px;
    }
    
    .promo_code .promo_hero_offer_divider {
        width: 100%;
        max-width: 450px;
    }
    
    .promo_code .promo_hero_offer_text {
        font-size: 26px;
        line-height: 36px;
    }
    .promo_code .promo_hero_heading_second h1{
        margin: auto;
        text-align: center;
    }
    .promo_code .promo_hero_left, .promo_code .promo_hero_right{
        text-align: center;
    }
    .promo_code .promo_hero_right{
        flex-direction: column-reverse;
    }
    .promo_code .promo_hero_right svg{
        display: none;
    }
    .promo_code .promo_hero_trust{
        justify-content: center;
    }
    .promo_code .promo_hero_trust{
        justify-content: center;
    }
    .cw_bfcm_deals_main.bfcm_deals25.all_other_customers .wt_prc25_main_wrap .wt_prc25_v1 .upperTabs .mainTabs .server_pricing_tabs li{
        min-width: initial;
    max-width: 200px;
    width: 100%;
    }
    .promo_code .promo_stat_divider{
        display: none;
    }
    .bfcm2024Popupsec .bfcmtimerwrap .timerWrap {
        flex-direction: column;
      }
      
    .bfcm2024Popupsec
    .popupInnerWrap
    .bfcmtimerwrap
    .clounterMainDiv
    li
    .countTxt {
    font-size: 19.649px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 136.647% */
    letter-spacing: 0.393px;
    text-transform: capitalize;
  }
  .bfcmtimerwrap .timerWrap {
    padding: 0;
  }
   .bfcmtimerwrap .timerWrap .cw_bfcm25_gbl_btn {
    padding: 8px 55px;
    margin-bottom: 8px;
  }
  
    .home_hero.bfcm25_home_hero
    .bfcmtimerwrap
    .timerWrap
    .cw_bfcm25_gbl_btn {
    padding: 12px 25px;
    margin-bottom: 0px;
  }
   .bfcm2024AffiliatePopupsec .bfcmtimerwrap .clounterMainDiv {
    min-width: 214px;
  }
 
    .bfcm2024Popupsec
    .popupInnerWrap
    .bfcmtimerwrap
    .clounterMainDiv
    li
    .countTxt {
    width: 22px;
  }
  
  .bfcm2024Popup_spanish
  .bfcmtimerwrap
  .timerWrap
  .cw_bfcm25_gbl_btn {
  padding: 5px 40px;
}
}

    

@media (max-width: 600px) {
    .stepper .step .logo {
        width: 90px;
        height: 90px;
    }
    .stepper .step .logo svg{
        height: 30px;
        width: 30px;
    }
    .stepper{
        gap: 35px;
    }
    
    /* Best Offer Responsive */
    .bestOffer {
        padding: 40px 0;
    }
    
    .bestOffer_wrapper {
        gap: 30px;
    }
    
    .illustration_container {
        height: 350px;
    }
    
    .icon_1, .icon_2 {
        width: 30px;
        height: 30px;
    }
    
    .icon_customize .customize_circle {
        width: 60px;
        height: 60px;
    }
    
    .icon_customize .customize_circle svg {
        width: 30px;
        height: 30px;
    }
    
    .badge_migration {
        right: 5%;
        top: 10%;
    }
    
    .badge_star {
        width: 110px;
        height: 110px;
    }
    
    .badge_content p {
        font-size: 15px;
        line-height: 17px;
    }
    
    .badge_content svg {
        width: 30px;
        height: 30px;
    }
    
    .content_wrapper {
        gap: 24px;
    }
    
    .btn_claim_offer {
        width: 100%;
        font-size: 16px;
        max-width: 100%;
    }
   
    /* Grow Smart Scale Responsive */
    .grow_smart_scale {
        padding: 40px 0;
    }
    
    .grow_smart_scale .grow_content {
        gap: 24px;
    }
    
    .grow_smart_scale .limited_offer_tag {
        font-size: 14px;
        line-height: 22px;
    }
    
    .grow_smart_scale .main_heading {
        gap: 5px;
    }
    
    .grow_smart_scale .main_heading h1 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .grow_smart_scale .italic_gradient {
        font-size: 36px;
        line-height: 32px;
        letter-spacing: -1.8px;
    }
    
    .grow_smart_scale .main_heading .second_line {
        flex-direction: column;
        gap: 0;
    }
    
    .btn_talk_expert {
        width: 100%;
        max-width: 100%;
    }
    
    /* Pricing Section Responsive */
    .pricing_section {
        padding: 40px 0;
    }
    
    .pricing_header {
        /* margin-bottom: 30px; */
        gap: 12px;
    }
    
    /* Promo Code Pricing Section Responsive 600px */
    .promo_code .promo_pricing_section {
        padding: 40px 0;
    }
    
    .promo_code .promo_pricing_header {
        margin-bottom: 30px;
        gap: 12px;
    }
    
    .promo_code .promo_pricing_header h2 {
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: -0.8px;
        max-width: 100%;
    }
    
    .promo_code .promo_pricing_description {
        font-size: 14px;
        max-width: 100%;
    }
    
    /* Promo Pricing Cards Responsive 600px */
    .promo_code .promo_pricing_cards {
        gap: 20px;
        margin-top: 30px;
    }
    
    .promo_code .promo_pricing_card {
        padding: 30px 20px;
        background: url(https://www.cloudways.com/wp-content/uploads/2025/11/Hosting-Plan.png) no-repeat center center/cover;
    }
    
    .promo_code .promo_card_header {
        gap: 12px;
    }
    
    .promo_code .promo_card_title h3 {
        font-size: 18px;
        letter-spacing: -0.54px;
    }
    
    .promo_code .promo_card_title svg {
        width: 30px;
        height: 30px;
    }
    
    .promo_code .promo_card_description {
        font-size: 14px;
    }
    
    .promo_code .promo_card_pricing {
        gap: 24px;
    }
    
    .promo_code .promo_price_old {
        font-size: 22px;
    }
    
    .promo_code .promo_price_new {
        font-size: 30px;
    }
    
    .promo_code .promo_cta_button {
        font-size: 13px;
        /* max-width: 100%; */
        line-height: 24px;
    }
    
    .promo_code .promo_card_mockup {
        max-width: 100%;
        right: -131px;
        top: 88%;
        display: none;
    }
    .promo_code .promo_card_mockup.promo_card_mockup_autonomous {
        right: -149px;
        top: 100%;
    }
    .promo_code .promo_cta_button{
        max-width: 162px;
    }
    
    /* Client Logos Responsive 600px */
    .promo_code .promo_client_logos {
        margin-top: 40px;
        gap: 30px;
    }
    
    .promo_code .promo_client_heading {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .promo_code .promo_logos_wrapper {
        gap: 30px;
    }
    
    .promo_code .promo_logos_wrapper img {
        height: 22px;
    }
    
    /* Stats Section Responsive 600px */
    .promo_code .promo_stats_section {
        padding: 40px 0;
        padding-bottom: 0;
    }
    
    .promo_code .promo_stats_header {
        margin-bottom: 24px;
        gap: 12px;
    }
    
    .promo_code .promo_stats_header h2 {
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: -0.8px;
    }
    
    .promo_code .promo_stats_description {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .promo_code .promo_stats_grid {
        gap: 24px;
    }
    
    .promo_code .promo_stat_number {
        font-size: 40px;
        letter-spacing: -1.2px;
    }
    
    .promo_code .promo_stat_text {
        font-size: 14px;
        max-width: 100%;
    }
    
    .promo_code .promo_stat_divider {
        width: 150px;
    }
    
    /* World Map Responsive 600px */
    .promo_code .promo_world_map {
        /* margin-top: 40px; */
    }
    
    .promo_code .promo_map_container {
        /* height: 300px; */
    }
    
    .promo_code .promo_map_avatar {
        width: 28px;
        height: 28px;
        border-width: 2px;
    }
    
    .promo_code .promo_testimonial_card {
        /* min-width: 160px; */
        gap: 3px;
    }
    
    .promo_code .promo_testimonial_avatar {
        width: 38px;
        height: 38px;
    }
    
    .promo_code .promo_testimonial_quote {
        font-size: 12px;
    }
    
    .promo_code .promo_author_name {
        font-size: 9px;
    }
    
    .promo_code .promo_author_title {
        font-size: 6px;
    }
    
    .promo_code .promo_testimonial_content {
        padding-right: 10px;
    }
    
    /* Addons Section Responsive 600px */
    .promo_code .promo_addons_section {
        padding: 40px 0;
    }
    
    .promo_code .promo_addons_content {
        gap: 30px;
    }
    
    .promo_code .promo_addons_left h2 {
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: -0.8px;
    }
    
    .promo_code .promo_addons_description {
        font-size: 14px;
    }
    
    .promo_code .promo_addons_cta {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Addons Cards Responsive 600px */
    .promo_code .promo_addons_grid {
        gap: 16px;
    }
    
    .promo_code .promo_addon_card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
    }
    
    .promo_code .promo_addon_header h3 {
        font-size: 16px;
    }
    
    .promo_code .promo_addon_icon {
        width: 32px;
        height: 32px;
    }
    
    .promo_code .promo_addon_icon svg {
        /* width: 20px;
        height: 20px; */
    }
    
    .promo_code .promo_addon_description {
        font-size: 13px;
    }
    
    .promo_code .promo_addon_pricing {
        width: 100%;
    }
    
    .promo_code .promo_price_amount {
        font-size: 26px;
        letter-spacing: -0.8px;
    }
    
    .promo_code .promo_price_details {
        font-size: 12px;
        /* padding-bottom: 5px; */
    }
    .promo_code .promo_price_details_desk{
        display: none;
    }
    .promo_code .promo_price_details_resp{
        display: block;
        padding-bottom: 6px;
    }
    /* Exclusive Offer Responsive 600px */
    .promo_code .promo_exclusive_section {
        /* padding: 0; */
    }
    
    .promo_code .promo_exclusive_wrapper {
        gap: 30px;
    }
    
    .promo_code .promo_exclusive_image {
        width: 100%;
        max-width: 100%;
        height: 350px;
    }
    
    .promo_code .promo_icon_orange svg {
        width: 70px;
        height: 70px;
    }
    
    .promo_code .promo_migration_badge {
        width: 100px;
        height: 100px;
        right: 0;
    }
    
    .promo_code .promo_badge_content p {
        font-size: 13px;
        line-height: 15px;
    }
    
    .promo_code .promo_badge_content svg {
        width: 30px;
        height: 30px;
    }
    
    .promo_code .promo_customize_circle svg {
        width: 50px;
        height: 50px;
    }
    
    .promo_code .promo_exclusive_header {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .promo_code .promo_exclusive_header h2 {
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: -0.8px;
    }
    
    .promo_code .promo_exclusive_description {
        font-size: 14px;
    }
    
    .promo_code .promo_exclusive_features {
        gap: 20px;
        margin-bottom: 30px;
        min-height: unset;
    }
    
    /* Make all features static - no animation on mobile */
    .promo_code .promo_feature_item {
        cursor: default;
    }
    
    /* Show all borders as fully filled */
    .promo_code .promo_feature_border {
        height: 70px !important;
    }
    
    .promo_code .promo_feature_border::after {
        height: 100% !important;
        transition: none !important;
    }
    
    /* Show all descriptions by default */
    .promo_code .promo_feature_content p {
        max-height: none !important;
        opacity: 1 !important;
        font-size: 13px;
    }
    
    .promo_code .promo_feature_content h3 {
        font-size: 16px;
        cursor: default;
    }
    
    .promo_code .promo_feature_highlighted .promo_feature_border {
        height: 70px !important;
    }
    
    .promo_code .promo_exclusive_cta {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
    }
    
    .promo_code .promo_cta_note {
        font-size: 12px;
        text-align: center;
    }
    
    /* Claim Offer Section Responsive */
    .claim_offer_section {
        padding: 40px 0;
    }
    
    .claim_offer_content {
        gap: 12px;
    }
    
    /* Offer Cards Responsive */
    .offer_cards_wrapper {
        margin-top: 30px;
    }
    
    .offer_card {
        padding: 30px 24px;
        gap: 20px;
    }
    
    .btn_activate_offer {
        width: 100%;
    }
    
    /* Hero Section Responsive 600px */
    .promo_code .promo_hero_section {
        padding: 80px 0;
    }
    
    .promo_code .promo_hero_wrapper {
        gap: 30px;
    }
    
    .promo_code .promo_hero_content {
        /* gap: 12px; */
        margin-bottom: 30px;
    }
    
    .promo_code .promo_hero_tag {
        font-size: 16px;
        line-height: 24px;
    }
    
    .promo_code .promo_hero_heading h1 {
        font-size: 28px;
        line-height: 38px;
    }
    
    .promo_code .promo_hero_heading_second {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .promo_code .promo_hero_heading_second h1 {
        font-size: 28px;
        line-height: 38px;
    }
    
    .promo_code .promo_hero_intelligence {
        font-size: 42px !important;
        line-height: 38px;
        letter-spacing: -2.1px;
    }
    
    .promo_code .promo_hero_description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .promo_code .promo_hero_actions {
        gap: 20px;
    }
    
    .promo_code .promo_hero_timer_wrapper {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
        gap: 12px;
    }
    
    .promo_code .promo_hero_timer {
        padding: 10px;
        width: 100%;
        justify-content: center;
        box-shadow: 0 0 0 4px rgba(178, 161, 255, 0.3);
    }
    
    .promo_code .promo_timer_item {
        min-width: 32px;
    }
    
    .promo_code .promo_timer_value {
        font-size: 22px;
        line-height: 30px;
    }
    
    .promo_code .promo_timer_label {
        font-size: 8px;
    }
    
    .promo_code .promo_timer_separator {
        font-size: 22px;
        line-height: 30px;
    }
    
    .promo_code .promo_hero_cta {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
    }
    
    .promo_code .promo_hero_trust {
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 12px;
    }

    
    .promo_code .promo_trust_rating svg {
        width: 100px;
        height: 20px;
    }
    
    .promo_code .promo_trust_text {
        font-size: 12px;
    }
    
    .promo_code .promo_g2_logo {
        width: 22px;
        height: 22px;
    }
    
    .promo_code .promo_trust_divider {
  display: none;
    }
    
    /* Responsive Testimonial Popup */
    .promo_code .promo_testimonial_card {
        min-width: 250px;
        max-width: 300px;
        padding: 10px;
    }
    .promo_code .promo_testimonial_card::after{
        left: 46%;
    }
    .promo_code .promo_testimonial_card{
        left: 0%;
    }
    .promo_code .promo_testimonial_avatar {
        width: 48px;
        height: 48px;
    }
    
    .promo_code .promo_testimonial_quote {
        font-size: 14px;
    }
    
    .promo_code .promo_author_name {
        font-size: 11px;
    }
    
    .promo_code .promo_author_title {
        font-size: 8px;
    }
    
    .promo_code .promo_map_dot {
        width: 14px;
        height: 14px;
        top: -7px;
    }
    
    .promo_code .promo_hero_offer_divider {
        max-width: 100%;
    }
    
    .promo_code .promo_hero_offer_text {
        font-size: 22px;
        line-height: 32px;
        letter-spacing: 0.44px;
    }
    .promo_code .promo_price_starts::after{
        left: 55px;
        top: 57%;
        width: 11%;
        height: 1px;
    }
    .promo_code .promo_offer_image{
        max-width: 278px;
    }
    
    /* Smaller Testimonial Popup for Mobile */
    .promo_code .promo_testimonial_card {
        /* min-width: 200px;
        max-width: 240px; */
        padding: 8px;
        gap: 8px;
    }
    
    .promo_code .promo_testimonial_avatar {
        width: 40px;
        height: 40px;
    }
    
    .promo_code .promo_testimonial_quote {
        font-size: 12px;
    }
    
    .promo_code .promo_author_name {
        font-size: 10px;
    }
    
    .promo_code .promo_author_title {
        font-size: 7px;
    }
    
    .promo_code .promo_map_dot {
        width: 12px;
        height: 12px;
        top: -6px;
    }
    .grow_smart_scale .grow_scale_gradient{
        display: none;
    }
    .cw_bfcm_deals_main.bfcm_deals25.all_other_customers .grow_smart_scale{
        background: url(https://www.cloudways.com/wp-content/uploads/2025/11/CTA.png) no-repeat center center/cover;
    }
    .promo_code .promo_map_bg img{
        object-fit: contain;
    }
    .promo_code .promo_map_container{
        height: 284px;
    }
    .promo_world_map .promo_map_container .pic_10{
        top: 45%;
    }
    .promo_world_map .promo_map_container .pic_1{
        left: 38%;
    }
    .promo_code .promo_price_current{
        align-items: flex-end;
    }
    .promo_world_map .promo_map_container .pic{
        transform: scale(0.5);
    }
    .promo_world_map .promo_map_container .pic_12{
        top: 32%;
    }
    .stepper .step .logo::after{
        height: 33px;
        top: 205%;
    }
    
    .home_hero.bfcm25_home_hero
    .cw_copilot_home_banner
    .bfcmtimerwrap
    .timerWrap {
    flex-direction: column;
  }
}

/* ====== COMPARISON SECTION ====== */
.comparision_section {
    padding: 80px 0;
    background: #fff;
}

.comparision_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 72px;
}

/* Comparison Header */
.comparision_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 100%;
}

.comparision_header h2 {
    letter-spacing: -1.2px;
    margin: 0;
}

.comparision_header .p2-regular {
    letter-spacing: -0.16px;
    margin: 0;
    max-width: 592px;
}

/* Comparison Table */
.comparision_table {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    max-width: 100%;
}

/* Table Header */
.comparision_table_header {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0;
    width: 100%;
}

.comparision_table_header_item {
    /* flex: 1; */
    min-width: 255px;
    height: 80px;
    background: #FCFCFC;
    border: 1px solid #DFE1E6;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    margin-right: -1px;
}

.comparision_table_header_item .p2-semibold {
    letter-spacing: -0.16px;
    margin: 0;
    text-align: center;
}

/* Table Body */
.comparision_table_body {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

/* Table Row */
.comparision_table_row {
    display: flex;
    align-items: stretch;
    margin-bottom: -1px;
    width: 100%;
}

/* Table Cell */
.comparision_table_cell {
    border: 1px solid #DFE1E6;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 21px 16px;
    margin-right: -1px;
}

.comparision_table_cell p {
    margin: 0;
}

/* Label Cell */
.comparision_table_label {
    flex: 0 0 40%;
    min-width: 350px;
    justify-content: flex-start;
}

.comparision_table_label .p2-regular {
    color: #253858;
    letter-spacing: -0.16px;
}

/* Value Cell */
.comparision_table_value {
    flex: 1;
    min-width: 180px;
    min-height: 56px;
}

.comparision_table_value .p2-regular {
    color: #5E6C84;
    letter-spacing: -0.48px;
    text-align: center;
}

/* Multiline Value Cell */
.comparision_table_value_multiline {
    min-height: 84px;
}

.comparision_table_value_multiline .p2-regular {
    letter-spacing: -0.16px;
    max-width: 206px;
}

/* Tall Value Cell */
.comparision_table_value_tall {
    min-height: 114px;
}

.comparision_table_value_tall .p2-regular {
    letter-spacing: -0.16px;
    max-width: 206px;
}

/* Table Footer */
.comparision_table_footer {
    text-align: center;
    margin-top: 8px;
}

.comparision_table_footer .p3-regular {
    color: #5E6C84;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .comparision_wrapper {
        gap: 60px;
    }
    
    .comparision_table_header_item {
        min-width: 180px;
        padding: 16px 20px;
    }
    
    .comparision_table_label {
        flex: 0 0 38%;
        min-width: 320px;
    }
    
    .comparision_table_value {
        min-width: 170px;
    }
}

@media (max-width: 992px) {
    .comparision_section {
        padding: 60px 0;
    }
    
    .comparision_wrapper {
        gap: 50px;
    }
    
    .comparision_table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    
    .comparision_table_header {
        min-width: 920px;
    }
    
    .comparision_table_row {
        min-width: 920px;
    }
    
    /* Add scrollbar styling for better UX */
    .comparision_table::-webkit-scrollbar {
        height: 8px;
    }
    
    .comparision_table::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .comparision_table::-webkit-scrollbar-thumb {
        background: #DFE1E6;
        border-radius: 10px;
    }
    
    .comparision_table::-webkit-scrollbar-thumb:hover {
        background: #C1C7D0;
    }
}

@media (max-width: 776px) {
    .comparision_section {
        padding: 40px 0;
    }
    
    .comparision_wrapper {
        gap: 40px;
    }
    
    .comparision_header h2 {
        font-size: 32px;
        padding: 0 15px;
    }
    
    .comparision_header .p2-regular {
        max-width: 100%;
        padding: 0 15px;
        font-size: 15px;
    }
    
    .comparision_table {
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .comparision_table_header_item {
        width: 168px;
        height: 70px;
        font-size: 14px;
        padding: 12px 16px;
        min-width: 160px;

    }
    
    .comparision_table_label {
        width: 350px;
        padding: 16px 12px;
    }
    
    .comparision_table_value {
        width: 180px;
        padding: 16px 12px;
    }
    
    .comparision_table_value .p2-regular {
        font-size: 14px;
    }
    
    .comparision_table_label .p2-regular {
        font-size: 14px;
    }
    
    .comparision_table_header {
        min-width: 820px;
    }
    
    .comparision_table_row {
        min-width: 820px;
    }
    
    .comparision_table_footer {
        padding: 0 15px;
    }
}

@media (max-width: 600px) {
    .comparision_section {
        padding: 40px 0;
    }
    
    .comparision_wrapper {
        gap: 32px;
    }
    
    .comparision_header h2 {
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: -0.8px;
        padding: 0 10px;
    }
    
    .comparision_header .p2-regular {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .comparision_table {
        gap: 40px;
        margin: 0 -10px;
        padding: 0 10px;
    }
    
    .comparision_table_header_item {
        width: 130px;
        height: 60px;
        font-size: 13px;
        padding: 10px 12px;
        min-width: 167px;
    }
    
    .comparision_table_label {
        width: 280px;
        padding: 14px 10px;
    }
    
    .comparision_table_value {
        width: 160px;
        padding: 14px 10px;
    }
    
    .comparision_table_value .p2-regular,
    .comparision_table_label .p2-regular {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .comparision_table_header {
        /* min-width: 680px; */
    }
    
    .comparision_table_row {
        min-width: 680px;
    }
    
    .comparision_table_footer {
        padding: 0 10px;
    }
    
    .comparision_table_footer .p3-regular {
        font-size: 11px;
        line-height: 1.5;
    }
}
  
    .home_hero.bfcm25_home_hero
    .cw_copilot_home_banner
    .bfcmtimerwrap
    .timerWrap {
    padding: 0;
  }
  
    .home_hero.bfcm25_home_hero
    .bfcmtimerwrap
    .timerWrap
    .cw_bfcm25_gbl_btn {
    display: block;
    width: 90%;
    margin: 0 0 10px;
  }
  
    .bfcm2024Popupsec
    .popupInnerWrap
    .bfcmtimerwrap
    .clounterMainDiv {
    padding: 4px 0;
  }
  .bfcm2024Popupsec .popupInnerWrap .clounterMainDiv {
    width: 200px;
    min-width: 200px;
  }

   .bfcmtimerwrap .clounterMainDiv li .counter:before {
    font-size: 22.543px;
    line-height: 30px;
  }
   .bfcm2024Popupsec.withTimer {
    height: 108px;
  }
  .bfcmtimerwrap .timerWrap .cw_bfcm25_gbl_btn {
    padding: 5px 60px;
    font-size: 10px;
  }
  
    .bfcm2024AffiliatePopupsec
    .bfcmtimerwrap
    .timerWrap
    .cw_bfcm25_gbl_btn {
    padding: 8px 34px;
    font-size: 10px;
  }


/* ====== SERVER POWER DIFFERENCE SECTION ====== */
.server_power_diff {
    /* padding: 80px 0; */
    background: #fff;
}

.server_power_diff_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 66px;
    padding-bottom: 120px;
}

/* Header Section */
.server_power_diff_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 776px;
}

.server_power_diff_header h2 {
    letter-spacing: -1.2px;
    margin: 0;
}

.server_power_diff_header .p2-regular {
    letter-spacing: -0.16px;
    margin: 0;
}

/* Cards Section */
.server_power_diff_cards {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: 1224px;
}

/* Individual Card */
.server_power_card {
    flex: 0 0 calc(33.333% - 10px);
    max-width: 398px;
    border-radius: 4px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid #FFD2BB;
background: linear-gradient(0deg, #FFF 64.71%, #FFF5F0 115.38%);
}

.server_power_card:hover {
    /* transform: translateY(-4px); */
    /* box-shadow: 0px 8px 24px rgba(9, 30, 66, 0.1); */
}

/* Card Icon */
.server_power_card_icon {
    width: 54px;
    height: 54px;
    background: #fff;
    border: 1px solid #C583E0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server_power_card_icon svg {
    width: 32px;
    height: 32px;
}

/* Card Content */
.server_power_card_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 245px;
}

.server_power_card_text_section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Card Text */
.server_power_card_text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.server_power_card_text h4 {
    letter-spacing: -0.72px;
    margin: 0;
    color: #091E42;
}

.server_power_card_text .p2-regular {
    letter-spacing: -0.48px;
    margin: 0;
}

/* Card List */
.server_power_card_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.server_power_card_list li {
    padding-left: 15px;
    position: relative;
    font-size: 18px;
    letter-spacing: -0.54px;
    line-height: 1.5;
}

.server_power_card_list li::before {
    content: '•';
    position: absolute;
    left: 0px;
    color: #253858;
}

/* Card Link */
.server_power_card_link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #2F39BF;
    text-decoration: none;
    letter-spacing: -0.16px;
    transition: gap 0.3s ease;
}

.server_power_card_link:hover {
    color: #2F39BF;
    text-decoration: none;
    gap: 6px;
}

.server_power_card_link svg {
    width: 20px;
    height: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .server_power_diff_cards {
        max-width: 100%;
    }
    
    .server_power_card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 992px) {
    .server_power_diff {
        /* padding: 60px 0; */
    }
    
    .server_power_diff_wrapper {
        gap: 50px;
    }
    
    .server_power_diff_cards {
        flex-direction: column;
        align-items: center;
    }
    
    .server_power_card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .server_power_card_list li {
        font-size: 15px;
    }
}

@media (max-width: 776px) {
    .server_power_diff {
        /* padding: 40px 0; */
    }
    
    .server_power_diff_wrapper {
        gap: 40px;
    }
    
    .server_power_diff_header {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .server_power_diff {
        /* padding: 40px 0; */
    }
    
    .server_power_card {
        padding: 30px 24px;
        gap: 20px;
    }
    
    .server_power_card_icon {
        width: 48px;
        height: 48px;
    }
    
    .server_power_card_icon svg {
        width: 28px;
        height: 28px;
    }
    
    .server_power_card_content {
        height: auto;
    }
    
    .server_power_card_list li {
        font-size: 14px;
        letter-spacing: -0.42px;
    }
}    