/* Real Mandal — logo theme (loads last)
   Navy #2b4365 = buttons & headings | Light blue #7ba0c9 = highlights */

:root {
  --light-yellow: #faf7f2;
  --primery: #2b4365;
  --primery-light: #7ba0c9;
  --primery-soft: #e8f1fa;
  --dark-black: #000000;
  --dark-greay: #9599ab;
  --greay: #afafaf;
  --text-greay: #848484;
  --black: #2b4365;
  --bg-white: #ffffff;
  --text-white: #ffffff;
}

/* ---- Remove old bright-blue highlight text → logo light blue ---- */
.page_wrapper h1 span,
.page_wrapper h2 span,
.page_wrapper h3 span,
.banner_section .banner_text .type-wrap span,
.section_title h2 span,
.service_section .service_text h2 span,
.about_us_section .abt_text h2 span,
.about_section .app_statstic li .text p span,
.service_section .service_text .feature_list li .icon span,
.pricing_inner .pannel_block .pricing span,
.pricing_inner .pannel_block.highlited_block .pricing h3 span,
.text_block span,
.white_text h1 span,
.white_text h2 span,
.white_text h3 span {
  color: var(--primery-light) !important;
}

.page_wrapper h1,
.page_wrapper h2,
.page_wrapper h3,
.banner_section .banner_text h1,
.section_title h2 {
  color: var(--primery);
}

/* Dark sections — keep section titles white, but NOT white pricing cards */
.white_text > .how_it_inner .section_title h2,
.white_text > .how_it_inner h3,
.white_text > .how_it_inner p,
.white_text > .how_it_inner .tag_text,
.how_it_section.white_text .section_title h2,
.how_it_section.white_text .steps_block h3,
.how_it_section.white_text .steps_block p,
.how_it_section.white_text .steps_block .tag_text,
.pricing_section.white_text .section_title h2,
.pricing_section.white_text .section_title p,
.pricing_section.white_text > .pricing_inner > .container > .section_title h2 {
  color: var(--text-white) !important;
}

.white_text h1 span,
.white_text h2 span,
.white_text h3 span {
  color: var(--primery-light) !important;
}

/* White pricing cards — dark text (was broken by white_text !important) */
.pricing_inner .pannel_block:not(.highlited_block) h3,
.pricing_inner .pannel_block:not(.highlited_block) p,
.pricing_inner .pannel_block:not(.highlited_block) span,
.pricing_inner .pannel_block:not(.highlited_block) .heading h3,
.pricing_inner .pannel_block:not(.highlited_block) .heading span,
.pricing_inner .pannel_block:not(.highlited_block) .features li p {
  color: var(--black) !important;
}

.pricing_inner .pannel_block:not(.highlited_block) .pricing h3,
.pricing_inner .pannel_block:not(.highlited_block) .pricing span {
  color: var(--primery) !important;
}

/* Highlighted pricing card — white text on brand navy */
.pricing_inner .pannel_block.highlited_block .heading h3,
.pricing_inner .pannel_block.highlited_block .heading span:not(.offer),
.pricing_inner .pannel_block.highlited_block .features li p,
.pricing_inner .pannel_block.highlited_block .pricing h3,
.pricing_inner .pannel_block.highlited_block .pricing span {
  color: var(--text-white) !important;
}

.pricing_inner .pannel_block.highlited_block .offer {
  color: var(--primery) !important;
  background-color: #fff !important;
}

/* Our clients title — don't crush letter-spacing on long line */
.our_client .section_title h2,
.our_client .section_title h2 span {
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.our_client .client_list li {
  list-style: none;
}

/* Footer — original Appix dark theme (do not use logo navy here) */
footer {
  background-color: #181a22 !important;
  background-image: url(../images/footer_bg.png) !important;
  background-repeat: no-repeat !important;
  background-position: 0 0 !important;
}

footer.white_text,
footer.white_text h1,
footer.white_text h2,
footer.white_text h3,
footer.white_text p,
footer.white_text .news_letter p,
footer.white_text .contact_info li a {
  color: var(--text-white) !important;
}

footer .news_letter form .form-group button {
  background-color: var(--primery-light) !important;
  color: #fff !important;
}

footer .news_letter form .form-group button:hover {
  background-color: #fff !important;
  color: var(--primery) !important;
}

footer .news_letter form .note {
  color: #7a7a7a !important;
}

footer .social_media li a {
  border-color: var(--dark-greay) !important;
}

footer .social_media li a:hover {
  background-color: #fff !important;
  color: #181a22 !important;
}

footer .download_side .app_btn li a {
  padding: 15px 35px !important;
  background-color: #000 !important;
  border-radius: 12px !important;
}

footer {
  padding-top: 64px !important;
  padding-bottom: 10px !important;
  margin-top: 40px;
}

/* Footer links — 2 lines below main footer content */
.footer_links_block {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer_links_block .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer_links_block .links li {
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.footer_links_block .links li:not(:last-child)::after {
  content: "|";
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

.footer_links_block .links li a {
  display: inline-block;
  white-space: nowrap;
  color: #c8ccd6 !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition: 0.25s ease;
}

.footer_links_block .links li a:hover {
  color: #fff !important;
}

.footer_links_block .links-legal {
  margin-top: 10px;
}

.footer_links_block .links-legal li a {
  font-size: 13px;
  font-weight: 500;
  color: #9aa0ad !important;
}

/* Footer bottom bar — original Appix style */
.footer_bottom {
  background-color: #111218 !important;
  margin-top: 24px !important;
  margin-bottom: 0 !important;
  max-width: 1370px;
  border-radius: 20px;
}

.footer_bottom .ft_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px !important;
  text-align: left;
}

.footer_bottom .copy_text p,
.footer_bottom .design_by p {
  margin: 0;
  color: var(--greay) !important;
  font-size: 14px;
  line-height: 1.45;
}

.footer_bottom .design_by a {
  color: var(--primery-light) !important;
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

.footer_bottom .design_by a:hover {
  color: #fff !important;
}

@media (min-width: 768px) {
  footer {
    padding-bottom: 12px !important;
  }

  .footer_links_block {
    margin-top: 36px;
    padding-top: 26px;
  }

  footer .download_side {
    padding-top: 72px !important;
  }
}

@media (max-width: 767px) {
  .footer_links_block {
    margin-top: 24px;
    padding-top: 18px;
  }

  .footer_links_block .links li a {
    font-size: 12px;
  }

  .footer_links_block .links li:not(:last-child)::after {
    margin: 0 8px;
  }

  .footer_links_block .links-legal li a {
    font-size: 11px;
  }

  .footer_bottom {
    margin: 18px 10px 0 !important;
    border-radius: 14px;
  }

  .footer_bottom .ft_inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 16px !important;
    gap: 8px;
  }

  .footer_bottom .copy_text p,
  .footer_bottom .design_by p {
    font-size: 12px;
  }
}

.go_top span {
  background-color: var(--primery-light) !important;
}

/* ---- Buttons: logo navy + original Appix shadow (no white ring) ---- */
.puprple_btn,
.navbar-expand-lg .navbar-nav .nav-link.dark_btn,
.title_badge,
.contact_form form .puprple_btn,
.signup_section .form_block .form_side .puprple_btn {
  background-color: var(--primery) !important;
  color: var(--text-white) !important;
  border: none !important;
}

.puprple_btn:hover,
.navbar-expand-lg .navbar-nav .nav-link.dark_btn:hover {
  background-color: var(--primery) !important;
  color: var(--text-white) !important;
}

.btn_block .btn_bottom {
  border: 1px solid var(--primery) !important;
  background: transparent !important;
}

/* ---- Review section — mobile layout ---- */
@media (max-width: 991px) {
  .page_wrapper {
    overflow-x: hidden;
  }

  /* Hero / Banner */
  .banner_section {
    margin-top: 16px;
    overflow: hidden;
  }

  .banner_section .banner_text {
    margin-top: 0;
    text-align: center;
  }

  .banner_section .banner_text .type-wrap {
    min-height: 0;
    margin-bottom: 6px;
  }

  .banner_section .banner_text h1 {
    font-size: 34px;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .banner_section .banner_text p {
    font-size: 14px;
    line-height: 1.65;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner_section .used_app {
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .banner_section .used_app ul {
    justify-content: center;
    margin: 0 0 10px;
  }

  .banner_section .used_app h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .banner_section .app_btn {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 8px;
  }

  .banner_section .app_btn li {
    margin: 0 !important;
    width: 100%;
    max-width: 210px;
  }

  .banner_section .app_btn li:last-child {
    margin-left: 0 !important;
  }

  .banner_section .app_btn li a {
    padding: 10px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .banner_section .app_btn li a img {
    height: 28px;
    width: auto;
  }

  .banner_section .banner_slider {
    margin: 24px auto 0;
    max-width: 300px;
    width: 100%;
    justify-content: center;
  }

  .banner_section .banner_slider .slider_frame {
    width: 260px;
  }

  .banner_section .banner_slider #frmae_slider {
    width: 240px;
  }

  .banner_section .banner_slider::before {
    width: 270px;
    height: 270px;
  }

  .banner_section .banner_slider .left_icon,
  .banner_section .banner_slider .right_icon {
    display: none;
  }

  .banner_section .spinBlock {
    margin-top: 28px;
  }

  .review_section .positive_inner .row .sticky-top {
    position: relative !important;
    top: auto !important;
  }

  /* Reviews — Appix card: avatar+name left, stars top-right */
  .review_section .review_side.innerpage_block,
  .review_section .review_side:not(.innerpage_block) {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    width: 100%;
    max-width: 100%;
  }

  .review_section .review_side .review_block,
  .review_section .review_side.innerpage_block .review_block {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 20px !important;
    margin-bottom: 0 !important;
    box-sizing: border-box;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(43, 67, 101, 0.08);
  }

  .review_section .review_side .review_block .coustomer_info {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto;
    align-items: start !important;
    column-gap: 10px;
    row-gap: 0;
    margin-bottom: 16px !important;
  }

  .review_section .coustomer_info .avtar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    grid-column: 1;
    grid-row: 1;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .review_section .coustomer_info .avtar img {
    width: 50px !important;
    height: 50px !important;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
  }

  .review_section .coustomer_info .avtar .text {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    text-align: left !important;
  }

  .review_section .coustomer_info .avtar .text h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 2px;
    color: var(--dark-black);
  }

  .review_section .coustomer_info .avtar .text span {
    font-size: 13px;
    display: block;
    color: var(--text-greay);
  }

  .review_section .coustomer_info .star {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    grid-column: 2;
    grid-row: 1;
    align-self: start !important;
    width: auto !important;
    min-width: 0 !important;
    flex: none !important;
    justify-content: flex-end !important;
    gap: 0;
    margin-top: 2px;
    padding-top: 0;
  }

  .review_section .coustomer_info .star span {
    display: inline-flex;
    font-size: 11px;
    line-height: 1;
    color: #fc9400;
  }

  .review_section .positive_inner.in_page {
    padding-top: 10px;
  }

  .review_section .positive_inner.in_page .row {
    margin-left: 0;
    margin-right: 0;
  }

  .review_section.page_ban {
    overflow-x: hidden;
  }

  .review_section .review_block p {
    overflow-wrap: break-word;
    word-break: normal;
    font-size: 14px;
    line-height: 1.65;
    text-align: left !important;
    margin: 0;
    color: var(--text-greay);
  }
}

@media (max-width: 767px) {
  .banner_section .banner_text h1 {
    font-size: 28px;
  }

  .banner_section .banner_slider {
    max-width: 280px;
  }

  .banner_section .banner_slider .slider_frame {
    width: 240px;
  }

  .banner_section .banner_slider #frmae_slider {
    width: 220px;
  }

  .banner_section .banner_slider::before {
    width: 250px;
    height: 250px;
  }

  .review_section .positive_inner {
    padding: 30px 0;
  }

  .review_section .sidebar_text {
    text-align: center;
    margin-bottom: 24px;
  }

  .review_section .sidebar_text .section_title.text-left {
    text-align: center;
  }

  .review_section .google_rating {
    justify-content: center;
  }

  .review_section .user_review {
    margin-bottom: 16px;
  }

  .review_section .smiley_icon {
    display: none;
  }

  /* Task app / Unique Features — Appix dual-mockup overlap */
  .task_app_section {
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-top: 4px;
  }

  .task_app_section .task_block {
    padding: 28px 12px 36px;
    border-radius: 28px;
    position: relative !important;
    top: auto !important;
    z-index: 1;
    margin-bottom: 14px;
    overflow: hidden;
  }

  .task_app_section .dotes_blue {
    display: none;
  }

  .task_app_section .task_img {
    display: block;
    position: relative;
    margin: 0 auto 24px;
    width: 100%;
    max-width: 300px;
    height: 380px;
  }

  .task_app_section .task_img::before {
    display: none;
  }

  .task_app_section .task_img .frame_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 63%;
    max-width: none;
    flex-shrink: unset;
    z-index: 1;
    margin: 0;
  }

  .task_app_section .task_img .frame_img img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  }

  .task_app_section .task_img .screen_img {
    display: block !important;
    position: absolute;
    right: 0;
    top: 12%;
    width: 56%;
    max-width: none;
    flex-shrink: unset;
    margin: 0 !important;
    z-index: 2;
  }

  .task_app_section .task_img .screen_img img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }

  .task_app_section .task_text .section_title {
    text-align: center;
  }

  .task_app_section .task_text .section_title .title_badge {
    display: inline-block;
    background-color: var(--primery) !important;
    color: #fff !important;
    padding: 4px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
  }

  .task_app_section .task_text .section_title .icon {
    margin: 0 auto 18px;
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .task_app_section .task_text .section_title .icon img {
    width: 42px;
  }

  .task_app_section .task_text .section_title h2 {
    font-size: 26px;
    letter-spacing: -1px;
    line-height: 1.25;
    color: #fff !important;
    margin-bottom: 12px;
  }

  .task_app_section .task_text .section_title p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.65;
    max-width: 340px;
    margin: 0 auto;
  }

  /* About section — match Appix diamond stats */
  .about_section .section_title {
    margin-bottom: 40px;
  }

  .about_section .section_title h2 {
    font-size: 24px;
    letter-spacing: -0.5px;
    line-height: 1.35;
  }

  .about_section .section_title h2 img {
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
  }

  .about_section .app_statstic {
    gap: 12px 10px;
    max-width: 320px;
    margin: 0 auto 30px;
  }

  .about_section .app_statstic li:nth-child(2),
  .about_section .app_statstic li:nth-child(3) {
    width: calc(50% - 6px);
  }

  .about_section .app_statstic li .text {
    width: 130px;
    height: 130px;
  }

  .about_section .app_statstic li .text p span {
    font-size: 26px;
  }

  .about_section .app_statstic li .text p {
    font-size: 14px;
  }

  .about_section .abtImg {
    margin: 20px 0;
  }

  .about_section .abtImg img {
    max-width: 220px;
    margin: 0 auto;
  }

  .about_section .video_block {
    width: 100%;
    max-width: 280px;
    margin: 24px auto;
  }

  .about_section .btn_block {
    display: flex;
    justify-content: center;
  }

  /* Service / Premium features */
  .service_section .service_text,
  .service_section .service_text.right_side {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: left;
  }

  .service_section .service_text h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .service_section .service_blocks {
    padding: 28px 0;
  }

  .service_section .service_blocks .img {
    margin-top: 24px;
  }

  /* How it works */
  .how_it_inner {
    padding: 50px 20px;
    border-radius: 20px;
  }

  .how_it_inner .steps_block {
    margin-bottom: 32px;
  }

  .how_it_inner .steps_block.step_border::after {
    display: none;
  }

  /* Our clients — 2-col grid like Appix */
  .our_client .section_title h2,
  .our_client .section_title h2 span {
    letter-spacing: -0.3px !important;
    word-spacing: normal !important;
    font-size: 24px !important;
    line-height: 1.35 !important;
    font-weight: 800;
  }

  .our_client .client_list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
    align-items: stretch;
  }

  .our_client .client_list li {
    width: 100%;
    margin: 0;
    list-style: none;
  }

  .our_client .client_list .client_logo {
    width: 100%;
    min-height: 72px;
    padding: 14px 12px;
    border-radius: 12px;
  }

  .our_client .client_list .client_logo img {
    width: auto;
    max-width: 110px;
    height: auto;
    max-height: 36px;
    object-fit: contain;
  }

  /* Pricing cards — left-align features like Appix (body text-align:center breaks this) */
  .pricing_section .pricing_inner .pannel_block {
    text-align: left;
    padding: 32px 24px;
    margin-bottom: 20px;
  }

  .pricing_section .pricing_inner .pannel_block .heading {
    text-align: left;
  }

  .pricing_section .pricing_inner .pannel_block .heading h3 {
    text-align: left;
  }

  .pricing_section .pricing_inner .pannel_block .pricing {
    text-align: left;
  }

  .pricing_section .pricing_inner .pannel_block .pricing h3 {
    font-size: 36px;
  }

  .pricing_section .pricing_inner .pannel_block .features {
    text-align: left;
  }

  .pricing_section .pricing_inner .pannel_block .features li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 8px;
  }

  .pricing_section .pricing_inner .pannel_block .features li p {
    text-align: left;
    width: auto;
    flex: 1;
  }

  .pricing_section .pricing_inner .pannel_block .features li .icon {
    flex-shrink: 0;
    margin-right: 0;
  }

  .pricing_section .pricing_inner .pannel_block .btn_block {
    text-align: center;
  }

  .pricing_section .pricing_inner .pannel_block.highlited_block .offer {
    color: var(--primery) !important;
    background: #fff !important;
    font-size: 12px;
    padding: 3px 12px;
    white-space: nowrap;
  }

  .pricing_section .nav-tabs {
    margin-left: auto;
    margin-right: auto;
  }

  /* Download section — stop huge "Download" text overflow */
  .downaload_section {
    overflow: hidden;
    min-height: 520px;
  }

  .downaload_section .background_slider {
    padding: 100px 0;
  }

  .downaload_section .yellow_dotes img {
    width: 320px;
    max-width: 90vw;
  }

  .downaload_section .center_screen {
    width: 100%;
    max-width: 320px;
    padding: 0 12px;
  }

  .downaload_section .center_screen .img img {
    max-width: 280px;
    width: 100%;
    height: auto;
  }

  .downaload_section .text_block span {
    font-size: 28px !important;
  }

  .downaload_section .text_block .mark_star {
    margin: 0 20px;
  }

  .downaload_section .dowanload_slider {
    padding: 8px 0;
  }

  .downaload_section .app_btn {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .downaload_section .app_btn li {
    margin: 0 !important;
  }

  .downaload_section .app_btn li:last-child {
    margin-left: 0 !important;
  }

  .downaload_section .app_btn li a {
    padding: 10px 20px;
  }

  .downaload_section .app_btn li a img {
    height: 28px;
  }

  .text_list_section .owl-stage,
  .text_list_section .owl-stage-outer,
  .downaload_section .owl-stage,
  .downaload_section .owl-stage-outer {
    height: 36px;
  }

  /* Footer — center like Appix mobile */
  footer {
    text-align: center;
    padding: 36px 0 8px !important;
  }

  footer .logo_side .logo {
    text-align: center;
    margin-bottom: 20px;
  }

  footer .logo_side .logo img {
    max-width: 180px;
    margin: 0 auto;
  }

  footer .news_letter {
    text-align: center;
  }

  footer .contact_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 20px 0 0;
  }

  footer .contact_info li:not(:last-child)::after {
    display: none;
  }

  footer .social_media {
    justify-content: center;
    margin: 20px auto 0;
  }

  footer .download_side {
    text-align: center !important;
    padding-top: 28px !important;
  }

  footer .download_side .app_btn {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px;
    margin-top: 20px !important;
  }

  footer .download_side .app_btn li {
    margin: 0 !important;
    width: 100%;
    max-width: 220px;
  }

  footer .download_side .app_btn li:last-child {
    margin-left: 0 !important;
  }

  footer .download_side .app_btn li a {
    padding: 12px 24px !important;
    display: flex;
    justify-content: center;
  }

  footer .download_side .app_btn li a img {
    height: 28px !important;
  }

  .go_top {
    right: 12px;
    bottom: 72px;
  }
}

/* ---- Admin login / OTP (signup_section) mobile ---- */
@media (max-width: 991px) {
  .full_bg {
    overflow-x: hidden;
  }

  .signup_section {
    padding: 16px 0 40px;
  }

  .signup_section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .signup_section .top_part {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 12px 0 20px;
  }

  .signup_section .top_part .back_btn {
    position: static;
    align-self: flex-start;
    font-size: 14px;
  }

  .signup_section .top_part .navbar-brand img {
    max-width: 150px;
    height: auto;
  }

  .signup_section .form_block {
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
  }

  .signup_section .form_block .form_side {
    width: 100% !important;
    max-width: 100%;
    padding: 28px 20px 32px !important;
    text-align: left !important;
  }

  .signup_section .form_block .form_side .section_title {
    text-align: left !important;
    margin-bottom: 28px;
  }

  .signup_section .form_block .form_side .section_title h2 {
    font-size: 26px !important;
    line-height: 1.25;
    letter-spacing: -0.5px;
  }

  .signup_section .form_block .form_side .section_title p {
    font-size: 14px;
    line-height: 1.6;
  }

  .signup_section .form_block .side_screen {
    display: none !important;
  }

  .signup_section .form_block .form_side form .forgate_check {
    flex-wrap: wrap;
    gap: 10px;
  }

  .signup_section .otp-digit-row {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .signup_section .otp-digit-row .form-control {
    min-width: 0;
    flex: 1;
    padding-left: 0 !important;
    text-align: center;
    font-size: 18px !important;
    font-weight: 700;
  }
}

@media (max-width: 480px) {
  .signup_section .form_block .form_side {
    padding: 24px 16px 28px !important;
  }

  .signup_section .form_block .form_side .section_title h2 {
    font-size: 22px !important;
  }

  .signup_section .otp-digit-row {
    gap: 6px;
  }
}

@media (max-width: 375px) {
  .task_app_section .task_img {
    max-width: 280px;
    height: 350px;
  }

  .banner_section .banner_text h1 {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .banner_section .banner_text p {
    font-size: 13px;
  }

  .banner_section .app_btn li {
    max-width: 190px;
  }

  .banner_section .app_btn li a img {
    height: 24px;
  }

  .banner_section .banner_slider .slider_frame {
    width: 220px;
  }

  .banner_section .banner_slider #frmae_slider {
    width: 200px;
  }

  .banner_section .banner_slider::before {
    width: 230px;
    height: 230px;
  }

  .about_section .section_title h2 {
    font-size: 22px;
  }

  .about_section .app_statstic {
    gap: 10px 8px;
    max-width: 290px;
  }

  .about_section .app_statstic li .text {
    width: 118px;
    height: 118px;
  }

  .about_section .app_statstic li .text p span {
    font-size: 22px;
  }

  .about_section .app_statstic li .text p {
    font-size: 13px;
  }
}

/* Tablet: also kill sticky task blocks so they don't cover About */
@media (max-width: 991px) {
  .task_app_section .task_block {
    position: relative !important;
    top: auto !important;
    padding: 32px 18px 40px;
    border-radius: 28px;
    overflow: hidden;
  }

  .task_app_section .dotes_blue {
    display: none;
  }

  .task_app_section .task_img {
    display: block;
    position: relative;
    margin: 0 auto 26px;
    width: 100%;
    max-width: 340px;
    height: 420px;
  }

  .task_app_section .task_img::before {
    display: none;
  }

  .task_app_section .task_img .frame_img {
    position: absolute;
    left: 2%;
    top: 0;
    width: 62%;
    max-width: none;
    margin: 0;
    z-index: 1;
  }

  .task_app_section .task_img .frame_img img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  }

  .task_app_section .task_img .screen_img {
    display: block !important;
    position: absolute;
    right: 0;
    top: 12%;
    width: 55%;
    max-width: none;
    margin: 0 !important;
    z-index: 2;
  }

  .task_app_section .task_img .screen_img img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }

  .task_app_section .task_text .section_title {
    text-align: center;
  }

  .task_app_section .task_text .section_title .title_badge {
    display: inline-block;
    background-color: var(--primery) !important;
    color: #fff !important;
    padding: 4px 18px;
    border-radius: 100px;
    margin-bottom: 18px;
  }

  .task_app_section .task_text .section_title .icon {
    margin: 0 auto 18px;
  }

  .task_app_section .task_text .section_title h2 {
    color: #fff !important;
  }

  .task_app_section .task_text .section_title p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

.white_btn .puprple_btn {
  background-color: var(--bg-white) !important;
  color: var(--dark-black) !important;
}

.white_btn .btn_bottom {
  border-color: var(--bg-white) !important;
  background: transparent !important;
}

/* ---- Links & nav (desktop header only) ---- */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link:not(.dark_btn) {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .navbar-expand-lg .navbar-nav .nav-link.dark_btn {
    padding: 9px 40px !important;
  }
}

/* ---- Mobile nav — match Appix theme dropdown ---- */
@media (max-width: 991px) {
  header.site-header {
    transition: transform 0.32s ease;
    will-change: transform;
  }

  header.site-header.is-hidden {
    transform: translateY(-100%);
    pointer-events: none;
  }

  header.site-header.menu-open {
    transform: translateY(0) !important;
    pointer-events: auto;
  }

  header .navbar {
    position: relative;
    padding: 8px 0 !important;
    min-height: 0;
  }

  header .navbar-brand {
    padding: 0;
    margin-right: 0;
  }

  header .navbar-brand img {
    width: 108px !important;
    height: auto;
  }

  header .navbar-toggler {
    padding: 2px 0 2px 10px;
    margin-left: auto;
  }

  header .navbar-toggler-icon {
    width: 28px;
    height: 28px;
  }

  header .toggle-bar,
  header .toggle-bar::before,
  header .toggle-bar::after {
    width: 22px;
  }

  header .navbar-collapse {
    position: absolute;
    top: calc(100% + 8px);
    left: 15px;
    right: 15px;
    width: auto;
    z-index: 1000;
  }

  .navbar-expand-lg .navbar-nav {
    align-items: flex-start;
    padding: 20px 15px;
    background-color: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(43, 67, 101, 0.12);
  }

  .navbar-expand-lg .navbar-nav .nav-link:not(.dark_btn) {
    padding: 8px 0 !important;
    width: 100%;
    text-align: left;
  }

  .navbar-expand-lg .navbar-nav .nav-item .btn_block {
    margin-left: 0;
    margin-top: 12px;
  }

  .navbar-expand-lg .navbar-nav .nav-link.dark_btn {
    padding: 10px 32px !important;
    transform: none !important;
    display: inline-block;
  }

  .navbar-expand-lg .navbar-nav .nav-link.dark_btn:hover {
    transform: none !important;
  }

  .navbar-expand-lg .navbar-nav .nav-item .btn_block .btn_bottom {
    display: none;
  }
}

a:hover,
.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link.active {
  color: var(--primery-light);
}

/* ---- Accents (dots, badges, toggles) ---- */
.owl-carousel .owl-dots button.active,
.owl-carousel .owl-dots button {
  border-color: var(--primery);
}

.owl-carousel .owl-dots button.active {
  background-color: var(--primery);
}

.signup_section .form_block .coustome_checkbox input:checked ~ .checkmark {
  background-color: var(--primery);
  border-color: var(--primery);
}

/* ---- Legal pages ---- */
.legal_page_section {
  padding: 70px 0 50px;
  position: relative;
}

.legal_page_section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 55%;
  background-image: url(/images/yellow_dotes.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: -1;
  pointer-events: none;
}

.legal_page_head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}

.legal_page_head h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 12px 0 16px;
  color: var(--dark-black);
}

.legal_intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-greay);
  margin-bottom: 10px;
}

.legal_updated {
  font-size: 13px;
  color: var(--dark-greay);
  margin: 0;
}

.legal_content_card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 12px 34px rgba(43, 67, 101, 0.08);
  text-align: left;
}

.legal_section + .legal_section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #ece7dc;
}

.legal_section h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--dark-black);
}

.legal_section p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-greay);
  margin: 0 0 12px;
}

.legal_section ul {
  margin: 0;
  padding-left: 20px;
}

.legal_section li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-greay);
  margin-bottom: 8px;
}

.legal_section a,
.legal_company_note a,
.legal_page_links a {
  color: var(--primery);
  font-weight: 600;
  text-decoration: underline;
}

.legal_company_note {
  margin-top: 32px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--primery-soft);
  border: 1px solid #d9e6f4;
}

.legal_company_note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--dark-black);
}

.legal_page_links {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #ece7dc;
}

.legal_page_links span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--dark-greay);
  margin-bottom: 10px;
}

.legal_page_links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal_page_links li {
  margin: 0;
}

@media (max-width: 767px) {
  .legal_page_section {
    padding: 50px 0 36px;
  }

  .legal_page_head h1 {
    font-size: 28px;
  }

  .legal_intro {
    font-size: 14px;
  }

  .legal_content_card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .legal_section h2 {
    font-size: 18px;
  }

  .legal_section p,
  .legal_section li {
    font-size: 14px;
  }

  .legal_page_links ul {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================================================
   Inner pages — mobile (match Appix stacking)
   About / stats / testimonials / download / pricing / contact / blog
   ========================================================= */
@media (max-width: 991px) {
  .about_us_section {
    padding-top: 40px;
    overflow: hidden;
  }

  .about_us_section #about_slider .abt_slides img {
    height: 280px;
  }

  .about_us_section .abt_text {
    margin-top: 28px;
    text-align: center;
  }

  .about_us_section .abt_text h2 {
    max-width: none;
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .why_choose .why_choose_inner {
    padding: 50px 16px;
    border-radius: 20px;
    overflow: hidden;
  }

  .why_choose .why_choose_inner .dotes_blue {
    top: -40%;
    width: 140%;
    max-width: none;
    pointer-events: none;
  }

  .why_choose .why_choose_inner .company_statistics ul {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    margin: 36px auto 0 !important;
    gap: 0;
  }

  .why_choose .why_choose_inner .company_statistics ul li {
    width: 50% !important;
    max-width: 150px;
    aspect-ratio: 1 / 1;
    margin-left: 0 !important;
  }

  .why_choose .why_choose_inner .company_statistics ul li:nth-child(even) {
    margin-left: -12px !important;
  }

  .why_choose .why_choose_inner .company_statistics ul li:nth-child(n + 3) {
    margin-top: -18px;
  }

  .why_choose .why_choose_inner .company_statistics ul li p span {
    font-size: 22px !important;
  }

  .why_choose .why_choose_inner .company_statistics ul li p {
    font-size: 13px !important;
  }

  .our_value_section .value_slider .value_block {
    padding: 28px 20px;
  }

  .testimonial_section {
    overflow: hidden;
  }

  .testimonial_inner {
    padding: 70px 16px 50px !important;
    border-radius: 16px;
  }

  .testimonial_inner .dotes_blue {
    top: -45%;
    width: 160%;
    pointer-events: none;
  }

  .testimonial_section .title {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-bottom: 16px;
    padding: 0 12px;
  }

  .testimonial_box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    max-width: 100%;
    text-align: center;
  }

  .testimonial_box .testi_img {
    width: 160px !important;
    max-width: 55vw;
    flex-shrink: 0;
  }

  .testimonial_box .testi_img .play_icon img {
    width: 56px;
  }

  .testimonial_box .testi_text {
    width: 100% !important;
    max-width: 100%;
    text-align: center;
  }

  .testimonial_box .testi_text .star {
    justify-content: center;
  }

  .testimonial_box .testi_text p {
    font-size: 16px !important;
    line-height: 1.55 !important;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .testimonial_box .user_info {
    justify-content: center;
    flex-wrap: wrap;
  }

  .testimonial_inner .client_logo_slider {
    margin-top: 40px;
  }

  .testimonial_inner .client_logo_slider .img {
    width: 140px;
  }

  /* Download app (inner pages) */
  .download_app {
    overflow: hidden;
  }

  .download_app .task_block {
    padding: 40px 20px 0 !important;
    border-radius: 20px;
    position: relative !important;
    top: auto !important;
  }

  .download_app .task_block .section_title {
    text-align: center !important;
  }

  .download_app .task_block .section_title h2 {
    font-size: 26px !important;
    line-height: 1.25;
  }

  .download_app .task_block .section_title p {
    font-size: 14px;
  }

  .download_app .dotes_blue {
    top: -35%;
    width: 160%;
    pointer-events: none;
  }

  .download_app .app_btn {
    flex-direction: column !important;
    align-items: stretch;
    gap: 12px;
    margin-top: 24px;
  }

  .download_app .app_btn li {
    margin: 0 !important;
    width: 100%;
  }

  .download_app .app_btn li:last-child {
    margin-left: 0 !important;
  }

  .download_app .app_btn li a {
    display: flex !important;
    justify-content: center;
    padding: 12px 20px;
  }

  .download_app .frame_img {
    text-align: center;
    margin-top: 28px;
  }

  .download_app .frame_img img {
    max-width: min(280px, 80vw);
    margin: 0 auto;
  }

  .download_app .frame_img::before {
    right: 50%;
    transform: translateX(50%) rotate(-8deg);
    width: 75%;
    max-width: 240px;
  }

  /* Pricing comparison → stacked plan cards */
  .pricing_page_block {
    overflow: hidden;
  }

  .pricing_page_block .table_content {
    margin-top: 28px;
    overflow: hidden;
  }

  .table_content .pricing_table {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px;
    padding: 16px;
  }

  .table_content .pricing_table .pricing_block {
    width: 100% !important;
    border: 1px solid #e8e2d6;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
  }

  .table_content .pricing_table .pricing_block:first-child {
    display: none !important;
  }

  .table_content .pricing_table .pricing_block .pricing_title {
    padding: 28px 20px 20px !important;
    min-height: 0 !important;
    text-align: center;
  }

  .table_content .pricing_table .pricing_block .pricing_title .t_block span {
    display: block;
    margin-top: 4px;
  }

  .table_content .pricing_table .pricing_block .pricing_title .pricing {
    padding: 16px 0;
  }

  .table_content .pricing_table .pricing_block .pricing_title .pricing h3 {
    font-size: 36px !important;
  }

  .table_content .pricing_table .pricing_block .pricing_title .btn_block {
    display: flex;
    justify-content: center;
  }

  .table_content .pricing_table .mobile_text {
    display: block !important;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark-black);
  }

  .table_content .pricing_table ul li {
    padding: 14px 18px !important;
    text-align: center;
  }

  .table_content .bottom_text {
    padding: 20px 16px 28px;
  }

  /* Contact */
  .contact_section {
    overflow: hidden;
  }

  .contact_listing {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 36px !important;
    max-width: 100%;
    padding: 0 12px;
  }

  .contact_listing li {
    width: 100%;
    max-width: 320px;
  }

  .contact_listing li a {
    font-size: 18px !important;
    word-break: break-word;
  }

  .contact_listing .icon {
    width: 72px;
    height: 72px;
    margin-bottom: 18px !important;
  }

  .contact_inner {
    padding: 48px 18px !important;
    border-radius: 20px;
  }

  .contact_form .dotes_blue {
    top: -40%;
    width: 160%;
    pointer-events: none;
  }

  .contact_form .section_title {
    margin-bottom: 28px !important;
    text-align: center;
  }

  .contact_form .section_title h2 {
    font-size: 26px;
  }

  .contact_form form .form-group .form-control {
    height: 52px;
  }

  .contact_form form .puprple_btn {
    width: 100%;
    max-width: 100%;
  }

  /* Blog listing */
  .our_resource {
    padding: 50px 0 24px;
    overflow: hidden;
  }

  .our_resource .section_title {
    text-align: center !important;
  }

  .our_resource .mail_block {
    padding: 40px 18px !important;
    border-radius: 16px;
  }

  .our_resource .mail_block .dotes_blue {
    top: -35%;
    width: 160%;
  }

  .blog_listings .listing_block {
    display: flex !important;
    flex-direction: column !important;
    padding: 18px !important;
    gap: 16px;
  }

  .blog_listings .listing_block .img,
  .blog_listings .listing_block .blog_text,
  .blog_listings .listing_block .authore_info {
    width: 100% !important;
  }

  .blog_listings .listing_block .blog_text {
    padding: 0 !important;
    text-align: left;
  }

  .blog_listings .listing_block .blog_text h2 {
    font-size: 20px !important;
    margin: 14px 0 !important;
  }

  .articles_section .filter_tags {
    justify-content: center;
    flex-wrap: wrap;
  }

  .go_top {
    z-index: 40;
    right: 12px;
    bottom: 72px;
  }
}

@media (max-width: 480px) {
  .about_us_section #about_slider .abt_slides img {
    height: 220px;
  }

  .why_choose .why_choose_inner .company_statistics ul {
    max-width: 260px;
  }

  .why_choose .why_choose_inner .company_statistics ul li {
    max-width: 130px;
  }

  .why_choose .why_choose_inner .company_statistics ul li p span {
    font-size: 18px !important;
  }

  .testimonial_box .testi_img {
    width: 140px !important;
  }

  .testimonial_box .testi_text p {
    font-size: 15px !important;
  }

  .download_app .task_block {
    padding: 32px 16px 0 !important;
  }

  .download_app .task_block .section_title h2 {
    font-size: 22px !important;
  }

  .table_content .pricing_table {
    padding: 12px;
  }
}

/* ========= Real Mandal — Pricing grid (aligned table) ========= */
.rm-pricing-wrap {
  margin-top: 0;
}

.rm-pricing-form {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(28, 36, 54, 0.06);
}

.rm-pricing-form h4 {
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--dark-black);
}

.rm-pricing-form p {
  margin: 0 0 18px;
  color: #666;
  font-size: 15px;
}

.rm-pricing-form-error {
  color: #d9534f;
  margin: 12px 0 0;
  font-size: 14px;
}

.rm-pricing-table-wrap {
  margin-top: 0 !important;
  padding: 0;
  overflow: hidden;
}

.rm-pricing-grid {
  display: grid;
  grid-template-columns: minmax(160px, 1.15fr) repeat(3, 1fr);
  background: #fff;
}

.rm-pricing-row {
  display: contents;
}

.rm-pricing-cell {
  border-top: 1px solid #e2dcd1;
  padding: 16px 22px;
  min-height: 58px;
  display: flex;
  align-items: center;
}

.rm-pricing-head {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 420px;
  padding: 44px 22px 36px;
  border-top: none;
}

.rm-pricing-features-head {
  justify-content: flex-end;
  padding-bottom: 36px;
}

.rm-pricing-features-head h3,
.rm-pricing-head h3 {
  margin: 0;
}

.rm-pricing-head .t_block span {
  display: block;
  margin-top: 4px;
  color: #666;
  font-size: 14px;
}

.rm-pricing-head .pricing {
  padding: 22px 0 16px;
  width: 100%;
}

.rm-pricing-head .pricing h3 {
  font-size: 38px;
  font-weight: 700;
  color: var(--primery);
  margin: 0;
  line-height: 1.1;
}

.rm-pricing-head .pricing span {
  font-size: 15px;
  font-weight: 400;
  color: var(--primery);
  margin-left: 2px;
}

.rm-pricing-head-spacer {
  flex: 1;
  width: 100%;
  min-height: 92px;
}

.rm-pricing-head .btn_block {
  width: 100%;
  margin-top: auto;
}

.rm-pricing-head-popular {
  background: linear-gradient(180deg, #f7f5ff 0%, #fff 100%);
  position: relative;
}

.rm-popular-badge {
  display: inline-block;
  background: var(--primery);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.rm-growth-sliders {
  width: 100%;
  margin-bottom: 8px;
  min-height: 92px;
}

.rm-growth-sliders label {
  display: block;
  font-size: 13px;
  color: #555;
  margin: 6px 0 2px;
}

.rm-growth-sliders input[type="range"] {
  width: 100%;
  accent-color: var(--primery);
  height: 6px;
}

.rm-pricing-feature-label p {
  margin: 0;
  font-weight: 700;
  color: var(--dark-black);
  line-height: 1.4;
}

.rm-pricing-value {
  justify-content: flex-start;
}

.rm-pricing-value p {
  margin: 0;
  line-height: 1.4;
}

.rm-pricing-value-popular {
  background: #faf9ff;
}

.rm-pricing-value .icofont-check-circled {
  color: var(--primery);
  font-size: 22px;
}

.rm-pricing-value .icofont-close-circled {
  color: var(--red-color);
  font-size: 22px;
}

.rm-pricing-grid .mobile_text {
  display: none;
}

.rm-pricing-note {
  padding: 22px 20px 28px;
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.rm-mobile-features {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 991px) {
  .rm-pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 16px;
  }

  .rm-pricing-features-head,
  .rm-pricing-feature-label {
    display: none !important;
  }

  .rm-pricing-row {
    display: none;
  }

  .rm-pricing-head {
    min-height: 0;
    border: 1px solid #e8e2d6;
    border-radius: 16px;
    text-align: center;
    align-items: center;
  }

  .rm-pricing-head .btn_block {
    display: flex;
    justify-content: center;
  }

  .rm-pricing-head-spacer {
    display: none;
  }

  .rm-mobile-features {
    display: block;
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    width: 100%;
    border-top: 1px solid #e2dcd1;
  }

  .rm-mobile-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
  }

  .rm-mobile-features li:last-child {
    border-bottom: none;
  }

  .rm-mobile-feature-name {
    font-weight: 600;
    color: var(--dark-black);
    text-align: left;
  }

  .rm-mobile-feature-val {
    text-align: right;
    flex-shrink: 0;
  }
}

@media (min-width: 992px) {
  .rm-pricing-grid .rm-pricing-row:last-child .rm-pricing-cell {
    border-bottom: 1px solid #e2dcd1;
  }
}

.rm-pricing-auth-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(28, 36, 54, 0.06);
}

.rm-pricing-auth-banner h4 {
  margin: 0 0 6px;
}

.rm-pricing-auth-banner p {
  margin: 0;
  color: #666;
}

.rm-pricing-auth-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rm-pricing-auth-actions .btn_block {
  display: inline-flex;
  align-items: center;
  margin: 0;
  vertical-align: top;
}

.rm-pricing-auth-actions .puprple_btn,
.rm-pricing-auth-actions .rm-btn-outline {
  margin-left: 0 !important;
  box-sizing: border-box;
  min-width: 130px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  padding: 8px 30px;
  border-radius: 25px;
  line-height: 1.5;
  border: 1px solid var(--primery);
  transform: translate3d(-3px, -4px, 0px);
  transform-style: preserve-3d;
  transition: 0.4s all;
  position: relative;
  z-index: 2;
}

.rm-pricing-auth-actions .puprple_btn {
  border-color: var(--primery);
}

.rm-pricing-auth-actions .puprple_btn:hover,
.rm-pricing-auth-actions .rm-btn-outline:hover {
  transform: translate3d(0px, 0px, 0px);
  color: var(--text-white);
}

.rm-btn-outline {
  border: 1px solid var(--primery);
  color: var(--primery) !important;
  background: transparent;
}

.rm-pricing-auth-actions .rm-btn-outline:hover {
  color: var(--primery) !important;
  background: #f7f5ff;
}

.rm-my-plans-panel {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(28, 36, 54, 0.06);
}

.rm-my-plans-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.rm-my-plans-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.rm-my-plans-head h4 {
  margin: 0 0 6px;
}

.rm-my-plans-head p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.rm-my-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.rm-plan-group h5 {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--dark-black);
}

.rm-plan-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e8e2d6;
  margin-bottom: 8px;
  font-size: 14px;
}

.rm-plan-card.unused {
  border-color: #c8e6c9;
  background: #f1f8f4;
}

.rm-plan-card.active {
  border-color: #bbdefb;
  background: #f3f9ff;
}

.rm-plan-card.pending {
  border-color: #f0d9a8;
  background: #fffaf0;
}

.rm-upgrade-toggle {
  margin-top: 8px;
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  color: var(--primery);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.rm-upgrade-form {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rm-upgrade-form label {
  margin: 0;
  font-size: 13px;
}

.rm-upgrade-form input[type="range"] {
  width: 100%;
}

.rm-upgrade-form p {
  margin: 0;
  font-size: 13px;
  color: #555;
}

.rm-upgrade-form .btn {
  margin-top: 4px;
  align-self: flex-start;
}

.rm-payment-verifying {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 36, 54, 0.45);
  backdrop-filter: blur(2px);
}

.rm-payment-verifying-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 48px rgba(28, 36, 54, 0.18);
  text-align: center;
}

.rm-payment-verifying-card span {
  color: #666;
  font-size: 14px;
}

.rm-payment-spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #e8e2d6;
  border-top-color: var(--primery);
  animation: rm-spin 0.8s linear infinite;
  margin-bottom: 6px;
}

@keyframes rm-spin {
  to {
    transform: rotate(360deg);
  }
}

.rm-success-wrap {
  position: relative;
  overflow: hidden;
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at top, rgba(91, 108, 255, 0.08), transparent 42%),
    linear-gradient(180deg, #f7f5f0 0%, #fff 55%);
  min-height: 70vh;
}

.rm-success-card {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px 28px;
  box-shadow: 0 16px 48px rgba(28, 36, 54, 0.08);
}

.rm-success-badge {
  display: inline-block;
  background: #e8f8ef;
  color: #1b7a45;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.rm-success-check {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #1c2436;
  color: #fff;
  font-size: 34px;
  line-height: 72px;
  animation: rm-pop 0.55s ease;
}

@keyframes rm-pop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  70% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.rm-success-steps {
  max-width: 420px;
  margin: 1.4rem auto;
  text-align: left;
  line-height: 1.9;
}

.rm-success-note {
  color: #666;
  font-size: 14px;
}

.rm-success-actions {
  margin-top: 18px;
}

.rm-confetti {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.rm-confetti-piece {
  position: absolute;
  top: -24px;
  border-radius: 2px;
  opacity: 0.95;
  animation-name: rm-fall;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  transform: rotate(var(--rm-rot, 20deg));
}

@keyframes rm-fall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate3d(20px, 110vh, 0) rotate(720deg);
    opacity: 0.2;
  }
}

.rm-plan-card em {
  font-size: 12px;
  color: #666;
  font-style: normal;
}

.rm-pricing-section-label {
  padding: 24px 24px 8px;
}

.rm-pricing-section-label h4 {
  margin: 0 0 4px;
}

.rm-pricing-section-label p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.site-header .rm-logout-btn {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
