/* =========================================================
   Posyliker — modern light theme override
   Injected after /fonts/fonts.css on every page.
   Keeps existing HTML class names; overrides visuals only.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --pl-bg: #ffffff;
  --pl-surface: #ffffff;
  --pl-surface-2: #f8fafc;
  --pl-surface-3: #f1f5f9;
  --pl-border: rgba(15, 23, 42, 0.08);
  --pl-border-strong: rgba(15, 23, 42, 0.14);

  --pl-text: #0f172a;
  --pl-text-secondary: #475569;
  --pl-text-muted: #64748b;
  --pl-text-inverted: #ffffff;

  --pl-primary: #4f46e5;
  --pl-primary-soft: rgba(79, 70, 229, 0.08);
  --pl-primary-soft-2: rgba(79, 70, 229, 0.12);
  --pl-primary-hover: #4338ca;
  --pl-accent: #0ea5e9;

  --pl-radius-sm: 12px;
  --pl-radius: 18px;
  --pl-radius-lg: 24px;
  --pl-radius-xl: 28px;

  --pl-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --pl-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --pl-shadow-lg: 0 14px 48px rgba(15, 23, 42, 0.1);

  --pl-max-width: 1160px;
  --pl-font: 'Poppins', 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  color-scheme: light;
}

/* ---------- Global typography & reset touches ---------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--pl-font) !important;
  background: var(--pl-bg) !important;
  color: var(--pl-text) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0 !important;
  min-width: 320px;
}

@media only screen and (max-width: 600px) {
  body {
    margin: 0 !important;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

/* ---------- Layout ---------- */
.container,
.base-container {
  width: 100%;
  max-width: var(--pl-max-width) !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.internalPages,
.instaServicesPage,
.youtubeServicesPage,
.tiktokServicesPage,
.servicesPage,
.about-us-container,
.blog,
.faq,
.contact,
.client,
.account__container,
.singleArticle {
  max-width: var(--pl-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ---------- Header ---------- */
.header,
.internalHeader {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--pl-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.layout-header,
.internalHeader__inner {
  margin-top: 0 !important;
  height: 76px;
  padding: 0;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-logo a {
  color: var(--pl-text) !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  height: 36px;
}

.header-services,
.internalHeader__nav-block {
  background: var(--pl-surface-2);
  border: 1px solid var(--pl-border);
  box-shadow: var(--pl-shadow-xs);
  border-radius: var(--pl-radius);
}

.header-service-instagram,
.header-service-youtube,
.header-service-tiktok,
.header-service-other,
.internalHeader__nav-text {
  color: var(--pl-text-secondary);
  font-weight: 500;
  transition: all 0.2s ease;
}

.header-service-instagram:hover,
.header-service-youtube:hover,
.header-service-tiktok:hover,
.header-service-other:hover,
.internalHeader__nav-text:hover {
  background: var(--pl-surface-3);
  color: var(--pl-text);
}

.header-service-instagram.active,
.header-service-youtube.active,
.header-service-tiktok.active,
.internalHeader__nav-text-active {
  background: var(--pl-primary) !important;
  color: #fff !important;
  box-shadow: var(--pl-shadow);
}

.internalHeader__nav-fixed {
  min-width: 110px;
  text-align: center;
  padding: 8px 14px;
  border-radius: 999px;
}

.header-service-instagram.active img,
.header-service-youtube.active img,
.header-service-tiktok.active img {
  filter: brightness(0) invert(1);
}

.header-service-instagram.active {
  background: linear-gradient(135deg, #f59e0b 0%, #ec4899 50%, #6366f1 100%) !important;
}

.header-service-youtube.active {
  background: #ef4444 !important;
}

.header-btns {
  gap: 14px;
}

.header-btn-signin,
.header-btns > a[id="SUP"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

.header-btn-signin img,
.header-btns > a[id="SUP"] img {
  flex-shrink: 0;
}

.header-btn-login,
.header-btn-monitoring,
.internalHeader__sign-in {
  border: 1px solid var(--pl-border-strong) !important;
  background: var(--pl-surface) !important;
  color: var(--pl-text-secondary) !important;
  border-radius: var(--pl-radius-sm) !important;
  font-weight: 500;
  height: 46px !important;
  padding: 0 22px !important;
  transition: all 0.2s ease;
}

.header-btn-login:hover,
.header-btn-monitoring:hover,
.internalHeader__sign-in:hover {
  border-color: var(--pl-primary) !important;
  color: var(--pl-primary) !important;
  box-shadow: var(--pl-shadow);
}

/* ---------- Service nav (likes/followers/etc) ---------- */
.servicesNav,
.servicesNavYoutube,
.tikTokServicesNav {
  margin-top: 28px !important;
  margin-bottom: 28px;
}

.servicesNav__nav,
.servicesNavYoutube__nav,
.tikTokServicesNav__nav {
  gap: 12px;
  justify-content: center;
  padding: 6px;
  background: var(--pl-surface-2);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  width: fit-content;
  margin: 0 auto;
  max-width: 100%;
}

.servicesNav__link,
.servicesNavYoutube__link,
.tikTokServicesNav__link {
  width: auto !important;
  min-width: 120px;
  height: 52px !important;
  background: transparent !important;
  border: none !important;
  border-radius: var(--pl-radius-sm) !important;
  color: var(--pl-text-secondary);
  font-weight: 500;
  flex-direction: row !important;
  gap: 8px !important;
  padding: 0 18px !important;
}

.servicesNav__link-active,
.servicesNavYoutube__link--active,
.tikTokServicesNav__link--active,
.servicesNav__link:has(.servicesNav__text-active),
.servicesNav__link:has(.active) {
  background: var(--pl-surface) !important;
  color: var(--pl-primary) !important;
  box-shadow: var(--pl-shadow);
  font-weight: 600;
}

/* active nav link on home: the active item has no -active class, only .active on inner text */
.servicesNav__link:not(.servicesNav__link-active):has(.servicesNav__text-active) {
  background: var(--pl-surface) !important;
  color: var(--pl-primary) !important;
  box-shadow: var(--pl-shadow);
  font-weight: 600;
}

.servicesNav__text-active,
.servicesNavYoutube__text-active {
  color: inherit !important;
}

/* ---------- Page titles ---------- */
.instaServicesPage__title-main,
.youtubeServicesPage__title-main,
.tiktokServicesPage__title-main,
.about-hero__title,
.faq__title,
.contact__title,
.rules__title,
.referral__title-main,
.blog__title,
.client__title,
.account__title,
.singleArticle__header-title,
.authorPage__title {
  font-size: clamp(32px, 5vw, 52px) !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  color: var(--pl-text) !important;
  text-align: center;
  margin-top: 48px !important;
  margin-bottom: 20px !important;
}

.instaServicesPage__text-description,
.youtubeServicesPage__text-description,
.tiktokServicesPage__text-description,
.about-hero__subtitle,
.contact__subtitle,
.rules__subtitle,
.blog__subtitle,
.faq__subtitle,
.singleArticle__header-description {
  color: var(--pl-text-muted);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.servicesInfo__item {
  background: var(--pl-primary-soft) !important;
  border: 1px solid var(--pl-primary-soft-2) !important;
  color: var(--pl-primary) !important;
  border-radius: var(--pl-radius) !important;
  font-weight: 500;
  padding: 16px 24px !important;
  margin-top: 28px !important;
}

/* ---------- Pricing box cards ---------- */
.box {
  gap: 16px;
  margin-top: 28px;
  justify-content: center;
}

.box__card {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border) !important;
  border-radius: var(--pl-radius) !important;
  width: 148px;
  height: 148px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--pl-shadow-xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.box__add-width {
  width: 166px !important;
}

.box__add-width .box__title {
  padding: 0 !important;
  width: 100% !important;
  position: static !important;
}

.box__service-name {
  font-size: 14px !important;
  margin-top: 4px !important;
}

.box__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pl-shadow);
  border-color: var(--pl-border-strong);
}

.box__selected,
.box__selected-red {
  border-color: var(--pl-primary) !important;
  background: var(--pl-primary-soft) !important;
  box-shadow: 0 0 0 4px var(--pl-primary-soft-2), var(--pl-shadow);
}

.box__title-block {
  margin-top: 0 !important;
  gap: 8px;
}

.box__count {
  font-size: 28px !important;
  font-weight: 700;
  color: var(--pl-text);
}

.box__service-name {
  color: var(--pl-text-muted) !important;
  margin-top: 8px !important;
  font-size: 13px !important;
}

.box__service-name span {
  color: var(--pl-text);
  font-weight: 600;
}

.box__discount-img {
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
}

.box__card--discount .box__title {
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1.25;
  padding: 0 8px;
}

.box__card--discount .box__title .box__count,
.box__card--discount .box__title strong,
.box__card--discount .box__title b {
  font-weight: 700;
  color: var(--pl-text);
}

.box__card--discount .box__title::before {
  content: '';
  display: none;
}

.quantity--instaCard {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 110px !important;
  position: static;
  margin: 0 auto !important;
  padding: 0 !important;
}

.quantity--instaCard .quantity__text {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  min-height: auto !important;
}

.quantity--instaCard [class*="box__"][class*="-color"],
.quantity--instaCard .box__likes-color,
.quantity--instaCard .box__followers-color,
.quantity--instaCard .box__views-color,
.quantity--instaCard .box__autolikes-color {
  display: none !important;
}

.quantity--instaCard .quantity__count {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--pl-text) !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.quantity--instaCard .quantity__control {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  border-radius: 50% !important;
  background: var(--pl-surface-2) !important;
  border: 1px solid var(--pl-border-strong) !important;
  color: var(--pl-primary) !important;
  font-size: 18px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.quantity--instaCard .quantity__control-minus {
  left: -12px !important;
  right: auto !important;
}

.quantity--instaCard .quantity__control-plus {
  right: -12px !important;
  left: auto !important;
}

/* Likes / Views: buttons slightly outside */
.quantity--instaCard:has(.box__likes-color) .quantity__control-minus {
  left: -18px !important;
}

.quantity--instaCard:has(.box__likes-color) .quantity__control-plus {
  right: -18px !important;
}

/* Followers: buttons at the edges */
.quantity__text.box__title-block-followers .quantity__control-minus {
  left: -22px !important;
}

.quantity__text.box__title-block-followers .quantity__control-plus {
  right: -22px !important;
}

/* Auto-likes: buttons closer to the card */
.instaServicesPage__buy-block-auto-likes .quantity--instaCard .quantity__control-minus {
  left: -6px !important;
}

.instaServicesPage__buy-block-auto-likes .quantity--instaCard .quantity__control-plus {
  right: -6px !important;
}

.box__card:hover .quantity--instaCard .quantity__control {
  opacity: 1;
}

.quantity__other-service {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-sm);
}

/* ---------- Benefits ---------- */
.benefits__wrapper,
.benefitsOld__wrapper {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg);
  box-shadow: var(--pl-shadow);
  padding: 32px;
}

.benefitsOld__wrapper {
  min-height: auto !important;
  height: auto !important;
  padding-bottom: 24px;
}

.benefitsOld__info {
  justify-content: flex-start !important;
  gap: 24px;
}

.benefits__icons-cirkul,
.benefitsOld__icons-cirkul {
  background: var(--pl-primary-soft) !important;
  border: 1px solid var(--pl-primary-soft-2);
}

.benefits__title,
.benefitsOld__title {
  color: var(--pl-text);
  font-weight: 700;
  margin-bottom: 24px;
}

.benefits__subtitle,
.benefitsOld__subtitle {
  color: var(--pl-text);
  font-weight: 600;
}

.benefits__text,
.benefitsOld__text {
  color: var(--pl-text-muted);
}

/* ---------- Reviews ---------- */
.reviews,
.discountuser {
  margin-top: 80px;
}

.reviews__title,
.discountuser__title {
  font-size: 32px !important;
  font-weight: 700;
  color: var(--pl-text);
  text-align: center;
  margin-bottom: 8px;
}

.reviews__description {
  color: var(--pl-text-muted);
  text-align: center;
  margin-bottom: 32px;
}

.reviews__nav,
.discountuser__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.reviews__add-feedback,
.reviews__add-feedback-pc,
.reviews__add-feedback-mobile,
.discountuser__add-feedback {
  background: var(--pl-primary) !important;
  color: #fff !important;
  border-radius: var(--pl-radius-sm) !important;
  height: 48px !important;
  padding: 0 22px;
  font-weight: 600;
  box-shadow: var(--pl-shadow);
  transition: all 0.2s ease;
}

.reviews__add-feedback:hover,
.discountuser__add-feedback:hover {
  background: var(--pl-primary-hover) !important;
  transform: translateY(-2px);
}

.swiper-slide {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  padding: 28px;
  box-shadow: var(--pl-shadow-xs);
  transition: all 0.25s ease;
}

.swiper-slide:hover {
  box-shadow: var(--pl-shadow);
  transform: translateY(-4px);
}

.reviews__title-card,
.discountuser__block-title {
  color: var(--pl-text);
  font-weight: 700;
  margin-top: 0;
}

.reviews__text-card,
.discountuser__text-card {
  color: var(--pl-text-secondary);
  opacity: 1;
}

.reviews__rate,
.reviews__rate-youtube {
  color: var(--pl-primary);
  font-weight: 700;
}

.swiper-pagination-bullet {
  background: var(--pl-border-strong);
  opacity: 1;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.swiper-pagination-bullet-active {
  background: var(--pl-primary);
  width: 28px;
}

.reviews__arrow-container,
.discountuser__arrow-container {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border-strong);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reviews__arrow-block,
.discountuser__arrow-block {
  background: transparent;
  border: none;
  border-radius: 0;
  width: auto !important;
  height: auto;
  display: flex;
  gap: 12px;
  align-items: center;
}

.reviews__arrow-container:hover,
.discountuser__arrow-container:hover {
  border-color: var(--pl-primary);
  background: var(--pl-primary);
}

.reviews__arrow-container > div,
.discountuser__arrow-container > div {
  display: none !important;
}

.reviews__arrow-container,
.discountuser__arrow-container {
  position: relative;
}

.reviews__arrow-container::before,
.discountuser__arrow-container::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: solid var(--pl-text-secondary);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(-45deg);
  margin-left: -2px;
}

.reviews__arrow-container + .reviews__arrow-container::before,
.reviews__arrow-block .reviews__arrow-container:last-child::before,
.discountuser__arrow-block .discountuser__arrow-container:last-child::before {
  transform: rotate(-45deg);
  margin-left: 2px;
}

.reviews__arrow-block .reviews__arrow-container:first-child::before,
.discountuser__arrow-block .discountuser__arrow-container:first-child::before {
  transform: rotate(135deg);
  margin-left: 2px;
}

.reviews__arrow-container:hover::before,
.discountuser__arrow-container:hover::before {
  border-color: #fff;
}

/* ---------- Discount user block ---------- */
.discountuser__block-discount {
  background: linear-gradient(135deg, var(--pl-primary) 0%, #7c3aed 100%) !important;
  border-radius: var(--pl-radius-lg);
}

/* ---------- Steps ---------- */
.steps__steps-block,
.steps-swipper {
  margin-top: 64px;
}

.steps__img-cirkul,
.steps-swipper__img-cirkul {
  background: var(--pl-primary-soft) !important;
  border: 1px solid var(--pl-primary-soft-2);
  border-radius: var(--pl-radius);
}

.steps__step-count-text,
.steps-swipper__step-count-text {
  color: var(--pl-primary);
  font-weight: 700;
}

.steps__step-title,
.steps-swipper__step-title {
  color: var(--pl-text);
  font-weight: 600;
  font-size: 18px;
}

.steps__step-text,
.steps-swipper__step-text {
  color: var(--pl-text-muted);
  line-height: 1.7;
}

.steps__line,
.steps-swipper__line {
  background: var(--pl-border-strong);
}

.steps__gorizontal-line,
.steps__gorizontal-line-red {
  background: transparent !important;
  height: 1px !important;
  min-height: 1px !important;
  max-height: 1px !important;
  border-top: 1px dashed var(--pl-border-strong) !important;
  margin: 32px 0 !important;
  padding: 0 !important;
  display: block !important;
}

.steps__gorizontal-line > img,
.steps__gorizontal-line-red > img {
  display: none !important;
}

/* ---------- Tips ---------- */
.tips__main-title {
  font-size: 32px !important;
  font-weight: 700;
  color: var(--pl-text);
  text-align: center;
  margin-top: 80px;
  margin-bottom: 32px;
}

.tips__block,
.tips__block-reverse {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg);
  box-shadow: var(--pl-shadow);
  padding: 32px;
  margin-top: 24px;
  gap: 32px;
  align-items: center;
}

.tips__title {
  color: var(--pl-text);
  font-weight: 700;
  font-size: 22px;
}

.tips__text {
  color: var(--pl-text-secondary);
  opacity: 1;
  line-height: 1.7;
}

.tips__img,
.tips__img-fix,
.tips__img-pc,
.tips__img-mobile {
  border-radius: var(--pl-radius);
  overflow: hidden;
}

/* ---------- Descriptions / content sections ---------- */
.descriptions {
  margin-top: 80px !important;
  margin-bottom: 80px;
}

.descriptions__order {
  margin-top: 64px;
}

.descriptions__order-title,
.descriptions__why-title,
.descriptions__Atlas-title,
.descriptions__benefits-title,
.descriptions__faq-main-title,
.descriptions__tips-main-title {
  color: var(--pl-text);
  font-weight: 700;
}

.descriptions__order-text,
.descriptions__why-description,
.descriptions__Atlas-text,
.descriptions__benefits-text,
.descriptions__faq-text,
.descriptions__nav-text,
.descriptions__text-content,
.descriptions__list {
  color: var(--pl-text-secondary);
  opacity: 1;
  line-height: 1.8;
}

.descriptions__order-step-number-cirkul {
  border-color: var(--pl-primary-soft-2);
  background: var(--pl-surface);
}

.descriptions__order-step-number,
.descriptions__step-count-text {
  color: var(--pl-primary);
  font-weight: 700;
}

.descriptions__Atlas-block,
.descriptions__benefits-block {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  box-shadow: var(--pl-shadow-xs);
  padding: 28px;
}

.descriptions__why-block {
  max-width: none;
}

.descriptions__should-buy-block,
.descriptions__should-buy-block-reverse {
  margin-top: 64px;
  gap: 40px;
  align-items: center;
}

.descriptions__nav-block,
.descriptions__nav-block-youtube {
  min-height: auto;
  height: auto;
  gap: 40px;
  margin-top: 32px;
}

.descriptions__nav-mobiles,
.descriptions__nav-mobiles > span,
.descriptions__nav-mobiles > div {
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
}

.descriptions__nav-mobiles {
  display: flex !important;
  align-items: center;
  justify-content: center;
  max-width: 50%;
  flex: 1 1 50%;
  min-height: 500px !important;
}

.descriptions__nav-mobiles > div {
  position: relative !important;
  overflow: visible !important;
  width: 100% !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}

.descriptions__nav-mobiles > div > div {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  height: auto !important;
  min-width: auto !important;
  min-height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
}

.descriptions__nav-mobiles img[src*="mobiles"] {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-width: auto !important;
  max-width: 100% !important;
  min-height: auto !important;
  max-height: none !important;
}

.descriptions__nav-title,
.descriptions__nav-title-youtybe,
.descriptions__nav-title-autolikes,
.descriptions__nav-title-followers {
  color: var(--pl-text);
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.descriptions__faq-block,
.descriptions__faq-block-color,
.panel-block,
.panel-block-color,
.panel-block-update,
.panel-block-color-update,
.panel-block-update-nav,
.panel-block-color-update-nav {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius) !important;
  padding: 24px 28px !important;
  margin-top: 14px !important;
  transition: all 0.2s ease;
}

.descriptions__faq-block:hover,
.descriptions__faq-block-color:hover,
.panel-block:hover,
.panel-block-color:hover,
.panel-block-update:hover,
.panel-block-color-update:hover {
  border-color: var(--pl-border-strong);
  box-shadow: var(--pl-shadow);
}

.panel-block-color,
.descriptions__faq-block-color {
  background: var(--pl-primary-soft) !important;
  border-color: var(--pl-primary-soft-2);
}

.panel-title,
.descriptions__faq-title,
.panel-difference-title {
  color: var(--pl-text);
  font-weight: 600;
  font-size: 17px;
}

.panel-text,
.descriptions__faq-text,
.faq-answer-injected {
  color: var(--pl-text-secondary);
  line-height: 1.7;
}

.expanded-cirkul,
.expanded-cirkul-color,
.expanded-cirkul-color-youtube,
.descriptions__expanded-cirkul,
.descriptions__expanded-cirkul-color {
  color: var(--pl-primary);
  transition: transform 0.25s ease;
}

.panel-difference-line,
.panel-difference-part-line {
  background: var(--pl-border-strong);
}

.panel-difference-block-premium {
  background: linear-gradient(135deg, #f59e0b 0%, #ec4899 50%, #6366f1 100%);
  border-radius: var(--pl-radius-sm);
}

/* Modern FAQ variant (Tailwind) */
div.border.rounded-3xl.overflow-hidden.relative {
  background: var(--pl-surface);
  border-color: var(--pl-border) !important;
  border-radius: var(--pl-radius) !important;
  box-shadow: var(--pl-shadow-xs);
  margin-bottom: 14px;
}

div.border.rounded-3xl.overflow-hidden.relative:has(.faq-item-open),
div.border.rounded-3xl.overflow-hidden.relative:hover {
  border-color: var(--pl-border-strong) !important;
  box-shadow: var(--pl-shadow);
}

/* ---------- FAQ page ---------- */
.faq__inner {
  margin-top: 40px;
}

.faq__title {
  margin-bottom: 16px;
}

/* ---------- Blog ---------- */
.blog__inner-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.blog__inner-card {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  box-shadow: var(--pl-shadow-xs);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: auto !important;
}

.blog__inner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pl-shadow);
  border-color: var(--pl-border-strong);
}

.blog__inner-card-img {
  border-radius: 0;
  height: 200px;
  overflow: hidden;
}

.blog__inner-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog__inner-card:hover .blog__inner-card-img img {
  transform: scale(1.05);
}

.blog__inner-card-title {
  color: var(--pl-text);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  margin: 20px 20px 10px;
}

.blog__inner-card-text {
  color: var(--pl-text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 20px 20px;
}

.blog__categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0 8px;
}

.blog__category,
.blog__category--active {
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 500;
  border: 1px solid var(--pl-border);
  transition: all 0.2s ease;
}

.blog__category--active {
  background: var(--pl-primary);
  color: #fff;
  border-color: var(--pl-primary);
}

.blog__category:not(.blog__category--active):hover {
  background: var(--pl-surface-2);
  border-color: var(--pl-border-strong);
}

/* Single article */
.singleArticle__header-title {
  text-align: left;
  margin-top: 24px;
}

.singleArticle__header-breadcrumbs {
  color: var(--pl-text-muted);
}

.singleArticle__header-breadcrumb-link {
  color: var(--pl-primary);
}

.singleArticle__header-description {
  text-align: left;
  margin-left: 0;
}

.singleArticle__header-image-wrap {
  border-radius: var(--pl-radius-lg);
  overflow: hidden;
  box-shadow: var(--pl-shadow);
}

.singleArticle__content {
  color: var(--pl-text-secondary);
  line-height: 1.8;
  font-size: 17px;
}

.singleArticle__content h2,
.singleArticle__content h3,
.singleArticle__content h4 {
  color: var(--pl-text);
  margin-top: 36px;
  margin-bottom: 16px;
}

.singleArticle__content p {
  margin-bottom: 20px;
}

.singleArticle__content ul,
.singleArticle__content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.singleArticle__content li {
  margin-bottom: 8px;
}

.singleArticle__info,
.authorPage__card {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg);
  box-shadow: var(--pl-shadow);
}

.singleArticle__recomendations-card {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  box-shadow: var(--pl-shadow-xs);
  transition: all 0.25s ease;
}

.singleArticle__recomendations-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pl-shadow);
}

/* ---------- Contact ---------- */
.contact__inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.contact__form-card,
.contact__form {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg);
  box-shadow: var(--pl-shadow);
  padding: 32px;
}

input,
textarea,
select,
.contact__textField,
.textarea-info__textarea,
.default-input,
.form__textField,
.form__textField-review,
.form__textarea,
.checkout-modal__input {
  background: var(--pl-surface-2);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-sm);
  color: var(--pl-text);
  transition: all 0.2s ease;
}

input:focus,
textarea:focus,
select:focus,
.contact__textField:focus,
.textarea-info__textarea:focus,
.default-input:focus,
.form__textField:focus,
.form__textarea:focus,
.checkout-modal__input:focus {
  border-color: var(--pl-primary) !important;
  box-shadow: 0 0 0 4px var(--pl-primary-soft-2);
  outline: none;
}

.contact__btn,
.form__btn,
.contact__auth-btn,
.code-page__account-btn,
.code-page__create-btn,
.confirmModal__secondButton,
.addEmailModal__submitModal button,
.addInstagramModal__submitModal button,
.collectingInformationModal button {
  background: var(--pl-primary) !important;
  color: #fff !important;
  border-radius: var(--pl-radius-sm) !important;
  font-weight: 600;
  box-shadow: var(--pl-shadow);
  transition: all 0.2s ease;
}

.contact__btn:hover,
.form__btn:hover,
.contact__auth-btn:hover {
  background: var(--pl-primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: var(--pl-shadow-lg);
}

.contact__info-block,
.contact__chooseOrder-card,
.contactUsBlockSocial {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  box-shadow: var(--pl-shadow-xs);
  padding: 24px;
}

.contact__info-title,
.contactUsBlockSocial__title {
  color: var(--pl-text);
  font-weight: 700;
}

.contact__info-data,
.contact__info-address,
.contactUsBlockSocial__text,
.contactUsBlockSocial__number {
  color: var(--pl-text-secondary);
}

.contact__chooseOrder-photo-active {
  border-color: var(--pl-primary);
  box-shadow: 0 0 0 3px var(--pl-primary-soft-2);
}

/* ---------- Buttons ---------- */
.btn,
.btn--def,
.custom-btn,
.auth-btns__btn,
.auth-btns-account-page__btn {
  background: var(--pl-primary) !important;
  color: #fff !important;
  border-radius: var(--pl-radius-sm) !important;
  font-weight: 600;
  box-shadow: var(--pl-shadow);
  transition: all 0.2s ease;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 180px !important;
  min-height: 48px !important;
  padding: 12px 24px !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.btn:hover,
.btn--def:hover,
.custom-btn:hover,
.auth-btns__btn:hover {
  background: var(--pl-primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: var(--pl-shadow-lg);
}

.btn--white {
  background: var(--pl-surface) !important;
  color: var(--pl-primary) !important;
  border: 1px solid var(--pl-border-strong) !important;
}

.btn--white:hover {
  background: var(--pl-surface-2) !important;
}

/* ---------- Footer ---------- */
.footer {
  background: #0f172a !important;
  color: #e2e8f0;
  padding: 64px 0 40px !important;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer a {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #fff;
}

.footer__top,
.footer__middle {
  gap: 40px;
  flex-wrap: wrap;
}

.footer__title {
  color: #fff !important;
  font-weight: 800;
  font-size: 30px !important;
}

.footer__card-title,
.footer__card-title-contact,
.first-link-footer,
.help-footer,
.us-footer,
.rules-footer,
.last-title-footer {
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
}

.footer__card-text,
.footer__contact-information,
.footer__contact-information-container,
.us-second-footer {
  color: #94a3b8 !important;
  line-height: 1.7;
}

.footer__icon-wrapper {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px;
  transition: all 0.2s ease;
}

.footer__icon-wrapper:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.footer__bottom {
  border-color: rgba(255, 255, 255, 0.1) !important;
  margin-top: 48px;
  padding-top: 24px;
  color: #94a3b8;
}

.footer__pay-img,
.footer__card-flags,
.footer__img-flag {
  filter: grayscale(0.3);
  opacity: 0.9;
}

.footer__my-account-btn,
.footer__my-account-btn-youtube {
  background: var(--pl-primary) !important;
  color: #fff !important;
  border-radius: var(--pl-radius-sm) !important;
  font-weight: 600;
}

.tiktok-links-footer-list a {
  color: #94a3b8 !important;
}

.tiktok-links-footer-list a:hover {
  color: #fff !important;
}


/* Auto-likes toggle: active/inactive text colors */
.servicesVariation__active h2,
.servicesVariation__active p {
  color: #ffffff !important;
}

.servicesVariation__not-active-auto h2,
.servicesVariation__not-active-auto p {
  color: var(--pl-text) !important;
  opacity: 0.65;
}

/* Keep inactive tab text centered (remove the original directional padding) */
.servicesVariation__not-active-auto,
.servicesVariation__not-active-auto-sub {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center !important;
}

.servicesVariation__active {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Make both toggle tabs equal 50% width so the labels stay in fixed positions */
.servicesVariation__nav-block > .auto-likes,
.servicesVariation__nav-block > .auto-likes-sub,
.servicesVariation__active,
.servicesVariation__not-active-auto,
.servicesVariation__not-active-auto-sub {
  width: 50% !important;
}

.servicesVariation__nav-block > .auto-likes {
  left: 0 !important;
  right: auto !important;
}

.servicesVariation__nav-block > .auto-likes-sub {
  left: 50% !important;
  right: auto !important;
}
/* ---------- Account / Client ---------- */
.account__container,
.client__inner {
  max-width: var(--pl-max-width);
  margin: 0 auto;
  padding: 32px 20px;
}

.account__card,
.client__user-block,
.client__info,
.client__warning,
.account__box,
.account__tarif-block {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  box-shadow: var(--pl-shadow-xs);
  padding: 24px;
}



.client__user-email,
.client__current-balance,
.account__title {
  color: var(--pl-text);
}

.client__warning {
  background: var(--pl-primary-soft);
  border-color: var(--pl-primary-soft-2);
  color: var(--pl-primary);
}

.client__go-shoping {
  background: var(--pl-primary);
  color: #fff;
  border-radius: var(--pl-radius-sm);
  font-weight: 600;
}

/* ---------- About us ---------- */
.about-us-container {
  padding-top: 48px;
  padding-bottom: 48px;
}

.about-hero__subtitle {
  color: var(--pl-primary);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-hero__text {
  color: var(--pl-text-secondary);
  line-height: 1.8;
}

.difference__card,
.timeline__year-circle,
.values-author__card {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  box-shadow: var(--pl-shadow-xs);
}

.difference__head {
  background: var(--pl-surface-2);
}

.growth-steps__badge {
  border-color: var(--pl-primary);
  color: var(--pl-primary);
  background: var(--pl-primary-soft);
}

.trust-impact__list,
.values-author__list,
.values-author__details {
  color: var(--pl-text-secondary);
}

.timeline__wrapper::before {
  background: linear-gradient(to bottom, #fff 0%, var(--pl-primary-soft) 25%, var(--pl-primary) 75%, #fff 100%);
}

/* ---------- Rules ---------- */
.rules__item-counter {
  background: var(--pl-primary-soft);
  color: var(--pl-primary);
  border: 1px solid var(--pl-primary-soft-2);
}

.rules__item {
  color: var(--pl-text);
}

.rules__text,
.rules__inner-list {
  color: var(--pl-text-secondary);
}

/* ---------- Referral ---------- */
.referral__title-main {
  margin-bottom: 16px;
}

/* ---------- Modals ---------- */
.popup,
.cartModal,
.checkout-modal__card,
.addEmailModal,
.addInstagramModal,
.confirmationCodeModal,
.deleteAccountModal,
.collectingInformationModal,
.confirmModal,
.instagramMonitoringModal {
  background: var(--pl-surface);
  border-radius: var(--pl-radius-lg);
  box-shadow: var(--pl-shadow-lg);
  border: 1px solid var(--pl-border);
}

.popup__close,
.cartModal__exit,
.checkout-modal__close {
  color: var(--pl-text-muted);
  transition: color 0.2s ease;
}

.popup__close:hover,
.cartModal__exit:hover,
.checkout-modal__close:hover {
  color: var(--pl-text);
}

.checkout-modal {
  background: rgba(15, 23, 42, 0.45);
}

.checkout-modal__title,
.cartModal__title,
.popup h2,
.popup h3 {
  color: var(--pl-text);
}

.checkout-modal__summary,
.cartModal__rules {
  color: var(--pl-text-muted);
}

.checkout-modal__next {
  background: var(--pl-primary) !important;
}

.checkout-modal__next:hover {
  background: var(--pl-primary-hover) !important;
}

/* ---------- Monitoring ---------- */
.monitoringWrapp,
.usersList,
.userItemMonitoring,
.userItemContainer,
.notificationsMonitoring,
.notificationsItem,
.privateWarningMonitoring,
.accountStatistics,
.accountStatisticsList,
.blueDiv,
.stalkerMode,
.planList__listItem {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  box-shadow: var(--pl-shadow-xs);
}

.userItemMonitoring:hover,
.userItemContainer:hover,
.notificationsItem:hover,
.planList__listItem:hover {
  border-color: var(--pl-border-strong);
  box-shadow: var(--pl-shadow);
}

.planList__listItem.active {
  background: var(--pl-primary) !important;
  border-color: var(--pl-primary);
}

.add-new-user-btn {
  background: var(--pl-primary);
  border-radius: var(--pl-radius-sm);
}

/* ---------- Tables ---------- */
.descriptions__comparison-table,
.container__table,
table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  overflow: hidden;
}

.descriptions__comparison-table th,
.descriptions__comparison-table td,
table th,
table td {
  border-bottom: 1px solid var(--pl-border);
  padding: 14px 18px;
}

.descriptions__comparison-table tr:last-child td,
table tr:last-child td {
  border-bottom: none;
}

.descriptions__comparison-table th,
table th {
  background: var(--pl-surface-2);
  color: var(--pl-text);
  font-weight: 600;
}

/* ---------- Payments / Code pages ---------- */
.code-page__account,
.payment__form,
.payment__card {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg);
  box-shadow: var(--pl-shadow);
}

.code-page__input {
  background: var(--pl-surface-2);
  border: 1px solid var(--pl-border);
  color: var(--pl-text);
  border-radius: var(--pl-radius-sm);
}

.code-page__button > button,
.code-page__sign-up {
  background: var(--pl-surface-2);
  color: var(--pl-primary);
  border: 1px solid var(--pl-border-strong);
  border-radius: var(--pl-radius-sm);
  font-weight: 600;
}

/* ---------- Toast / last order ---------- */
.lastOrder {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  box-shadow: var(--pl-shadow-lg);
  border-radius: var(--pl-radius);
}

/* ---------- Sub block on page ---------- */
.subBlockOnPage__wrapper {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg);
  box-shadow: var(--pl-shadow);
  padding: 28px;
}

.subBlockOnPage__title {
  color: var(--pl-text);
  font-weight: 700;
}

.subBlockOnPage__text {
  color: var(--pl-text-secondary);
}

.subBlockOnPage__icon,
.subBlockOnPage__image {
  background: var(--pl-primary-soft);
  border-radius: var(--pl-radius);
}

/* ---------- Pagination ---------- */
.pagination {
  margin-top: 40px;
}

.pagination__page,
.pagination__side {
  color: var(--pl-text-muted);
  font-weight: 500;
}

.pagination__page.is-active {
  color: var(--pl-primary);
  border-bottom-color: var(--pl-primary);
}

.pagination__page:hover,
.pagination__side:hover,
.pagination__dots-link:hover {
  color: var(--pl-text);
}

/* ---------- Author page ---------- */
.authorPage__card {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg);
  box-shadow: var(--pl-shadow);
}

.authorPage__name {
  color: var(--pl-text);
  font-weight: 700;
}

.authorPage__role,
.authorPage__bio {
  color: var(--pl-text-secondary);
}

/* ---------- Cart ---------- */
.cartModal__card,
.cartModal__cards {
  background: var(--pl-surface-2);
  border-radius: var(--pl-radius);
  border: 1px solid var(--pl-border);
}

.cartModal__remove-btn {
  color: #ef4444;
}

.cartModal__back-button {
  color: var(--pl-text-secondary);
}

/* ---------- Service variation / auto-likes ---------- */
.servicesVariation__active,
.servicesVariation__not-active-auto,
.servicesVariation__not-active-auto-sub {
  border-radius: var(--pl-radius-sm) !important;
}

.servicesVariation__active {
  background: var(--pl-primary) !important;
}

/* ---------- Loader & disabled ---------- */
.loader-wrapper {
  background: rgba(248, 250, 252, 0.72);
  backdrop-filter: blur(6px);
}

.static-disabled-control,
.disable,
.disableElem,
.disabled,
.quantity__disabled {
  opacity: 0.45 !important;
  filter: grayscale(0.6);
}

.field-error {
  border-color: #ef4444 !important;
  background: #fef2f2 !important;
}

.form-success-msg,
.static-order-msg {
  color: #16a34a;
}

/* ---------- Mobile menu ---------- */
.burger__content {
  background: var(--pl-surface);
  box-shadow: var(--pl-shadow-lg);
}

.burger__blur {
  background: rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(4px);
}

.internalHeader__nav-block-burger {
  color: var(--pl-text);
}

/* ---------- Tailwind arbitrary-color overrides ---------- */
/* We map the old palette to the modern palette so inline utility classes feel consistent. */

/* ---------- Visual quote images -> text quotes ---------- */
img[src*="quotes"],
img[src*="quote"] {
  display: none !important;
}

p:has(img[src*="quotes"]),
div:has(> span img[src*="quotes"]) {
  position: relative;
}

p:has(img[src*="quotes"]) .flex-1,
div:has(> span img[src*="quotes"]) .flex-1,
span.flex-1:has(~ span img[src*="quotes"]) {
  display: inline !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

p:has(img[src*="quotes"]) .flex-1::before,
div:has(> span img[src*="quotes"]) .flex-1::before,
span.flex-1:has(~ span img[src*="quotes"])::before {
  content: '"';
  color: var(--pl-primary);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4em;
  line-height: 1;
  margin-right: 2px;
}

p:has(img[src*="quotes"]) .flex-1::after,
div:has(> span img[src*="quotes"]) .flex-1::after,
span.flex-1:has(~ span img[src*="quotes"])::after {
  content: '"';
  color: var(--pl-primary);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4em;
  line-height: 1;
  margin-left: 2px;
}

/* Old navy #090A1F -> modern slate text */
[class*="text-[#090A1F]"],
[class*="text-[#000000]"] {
  color: var(--pl-text) !important;
}

/* But never override explicit white text on dark backgrounds */
[class*="bg-[#090A1F]"] [class*="text-white"],
[class*="bg-[#090A1F]"][class*="text-white"],
[class*="bg-[#545454]"] [class*="text-white"],
[class*="bg-[#545454]"][class*="text-white"] {
  color: #ffffff !important;
}

[class*="text-[#090a1f80]"],
[class*="text-[#090A1F80]"],
[class*="text-[#090A1F59]"],
[class*="text-[#090A1FCC]"],
[class*="text-[#090A1F4D]"],
[class*="text-[#090a1fb3]"],
[class*="text-[#00000080]"],
[class*="text-[#00000059]"],
[class*="text-[#84848f]"],
[class*="text-[#909090]"],
[class*="text-[#969696]"],
[class*="text-[#979797]"],
[class*="text-[#BABEC0]"] {
  color: var(--pl-text-secondary) !important;
}

/* Old blue #457CE9 -> modern primary */
[class*="text-[#457CE9]"],
[class*="text-[#457ce9]"] {
  color: var(--pl-primary) !important;
}

/* Old backgrounds */
[class*="bg-[#F5F5F5]"],
[class*="bg-[#fbfbfb]"],
[class*="bg-[#F6F9FF]"],
[class*="bg-[#f8fbff]"],
[class*="bg-[#F8FBFF]"],
[class*="bg-[#F2F2FF]"] {
  background-color: var(--pl-surface-2) !important;
}

[class*="bg-[#457CE91A]"],
[class*="bg-[#457CE90D]"],
[class*="bg-[#7D9DFF33]"] {
  background-color: var(--pl-primary-soft) !important;
}

[class*="bg-[#090A1F0D]"] {
  background-color: var(--pl-surface-3) !important;
}

[class*="bg-[#090A1F]"],
[class*="bg-[#545454]"] {
  background-color: var(--pl-text) !important;
}

/* Dark buttons that also declare text-white must keep white text */
[class*="bg-[#090A1F]"][class*="text-white"],
[class*="bg-[#545454]"][class*="text-white"] {
  color: #ffffff !important;
}

[class*="bg-[#090A1F]"][class*="text-white"]:hover,
[class*="bg-[#545454]"][class*="text-white"]:hover {
  color: var(--pl-text) !important;
}

/* Pastel accent backgrounds keep hue but softened */
[class*="bg-[#FFF1D5]"] { background-color: #fff7ed !important; }
[class*="bg-[#FAD7FF]"] { background-color: #fae8ff !important; }
[class*="bg-[#D5FFEF]"] { background-color: #ecfdf5 !important; }
[class*="bg-[#E3E94536]"] { background-color: #fefce8 !important; }

/* Old borders */
[class*="border-[#090A1F1A]"],
[class*="border-[#090a1f1a]"],
[class*="border-[#090A1F33]"],
[class*="border-[#090a1f33]"],
[class*="border-[#090A1F0D]"] {
  border-color: var(--pl-border) !important;
}

[class*="border-[#457CE933]"],
[class*="border-[#457ce9cc]"],
[class*="border-[#457CE9CC]"],
[class*="border-[#457CE9]"],
[class*="border-[#457ce9]"] {
  border-color: var(--pl-primary-soft-2) !important;
}

/* ---------- Animations ---------- */
.fadeIn {
  animation: fadeIn 0.45s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .layout-header,
  .internalHeader__inner {
    height: 68px;
  }

  .header-services,
  .internalHeader__nav {
    height: auto;
  }

  .servicesNav__nav,
  .servicesNavYoutube__nav,
  .tikTokServicesNav__nav {
    justify-content: flex-start;
    width: 100%;
    margin: 0;
  }

  .instaServicesPage__title-main,
  .youtubeServicesPage__title-main,
  .tiktokServicesPage__title-main,
  .about-hero__title,
  .faq__title {
    font-size: clamp(28px, 7vw, 40px) !important;
  }

  .descriptions__should-buy-block,
  .descriptions__should-buy-block-reverse,
  .tips__block,
  .tips__block-reverse {
    flex-direction: column;
  }

  .tips__img,
  .tips__img-fix {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container,
  .base-container,
  .internalPages,
  .instaServicesPage,
  .youtubeServicesPage,
  .tiktokServicesPage,
  .servicesPage,
  .about-us-container,
  .blog,
  .faq,
  .contact,
  .client,
  .account__container,
  .singleArticle {
    padding-left: 16px;
    padding-right: 16px;
  }

  .box__card {
    width: calc(50% - 8px) !important;
    height: auto !important;
    min-height: 140px;
  }

  .trial__wrapper,
  .trialYoutube__wrapper,
  .defaultTrial__wrapper {
    padding: 22px !important;
  }

  .trial__count-block,
  .trialYoutube__count-block,
  .defaultTrial__count-block {
    flex-direction: column;
    align-items: stretch;
  }

  .trial__count,
  .trialYoutube__count,
  .defaultTrial__count {
    width: 100% !important;
  }

  .otherServiceCard__buy-block {
    max-width: 100%;
    margin-top: 16px;
  }

  .footer__top,
  .footer__middle {
    gap: 28px;
  }

  .footer__card {
    width: 100%;
  }
}

/* =========================================================
   Issue fixes
   ========================================================= */

/* 1. Benefits box should sit beside the plan selector */
.instaServicesPage__buy-block,
.youtubeServicesPage__buy-block {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  justify-content: center !important;
  gap: 24px;
}

.instaServicesPage__buy-block .trial,
.instaServicesPage__buy-block .trialYoutube,
.youtubeServicesPage__buy-block .trial,
.youtubeServicesPage__buy-block .trialYoutube {
  flex: 0 0 100% !important;
  width: 100% !important;
  order: 2;
}

.servicesList {
  width: 700px !important;
  max-width: 700px !important;
  flex: 0 0 700px !important;
}

.benefitsOld {
  width: 340px !important;
  max-width: 340px !important;
  flex: 0 0 340px !important;
  min-width: auto !important;
  order: 1;
}

.benefitsOld__wrapper {
  width: 340px !important;
  max-width: 340px !important;
  height: auto !important;
  max-height: none !important;
  min-height: auto !important;
  padding-bottom: 24px;
}



@media (max-width: 1100px) {
  .instaServicesPage__buy-block,
  .youtubeServicesPage__buy-block {
    flex-wrap: wrap !important;
  }

  .servicesList,
  .benefitsOld,
  .benefitsOld__wrapper {
    max-width: 100% !important;
    width: 100% !important;
    flex: 1 1 100%;
  }
}

/* 2. Likes / service icons visible on active nav tab */
.servicesNav__link:has(.servicesNav__text-active) img,
.servicesNavYoutube__link:has(.servicesNavYoutube__text-active) img,
.tikTokServicesNav__link--active img {
  filter: invert(37%) sepia(69%) saturate(5664%) hue-rotate(225deg) brightness(95%) contrast(96%) !important;
}

.header-service-instagram.active img,
.header-service-youtube.active img,
.header-service-tiktok.active img,
.header-service-other.active img {
  filter: none !important;
}

/* Fix guarantee selector desktop/mobile text visibility and alignment */
.trial__count,
.trialYoutube__count,
.defaultTrial__count {
  font-weight: 600 !important;
}

.trial__count-text,
.trialYoutube__count-text,
.defaultTrial__count-text {
  font-weight: 600 !important;
  text-align: center !important;
}

.trial__count.active-block,
.trialYoutube__count.active-block,
.defaultTrial__count.active-block {
  justify-content: center !important;
  gap: 12px !important;
}

.trial__count.active-block > div:has(.trial__count-text),
.trialYoutube__count.active-block > div:has(.trial__count-text),
.defaultTrial__count.active-block > div:has(.trial__count-text) {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 2px !important;
}

.trial__count.active-block > div:has(.trial__count-text) .trial__count-text-desktop:first-of-type,
.trialYoutube__count.active-block > div:has(.trial__count-text) .trial__count-text-desktop:first-of-type,
.defaultTrial__count.active-block > div:has(.trial__count-text) .trial__count-text-desktop:first-of-type {
  font-weight: 700 !important;
  font-size: 17px !important;
}


@media (min-width: 992px) {
  .trial__count-text-desktop,
  .trialYoutube__count-text-desktop,
  .defaultTrial__count-text-desktop {
    display: block !important;
  }

  .trial__count-text-mobile,
  .trialYoutube__count-text-mobile,
  .defaultTrial__count-text-mobile {
    display: none !important;
  }
}

/* 3. Configurator price alignment */
.trial__text-cost,
.trialYoutube__text-cost,
.defaultTrial__text-cost {
  width: 220px !important;
  min-width: 220px !important;
  justify-content: center !important;
  text-align: center !important;
}

.trial__text,
.trialYoutube__text,
.defaultTrial__text {
  align-items: center !important;
}

/* 4. Add feedback button text visible */
.reviews__add-feedback,
.reviews__add-feedback-pc,
.reviews__add-feedback-mobile,
.discountuser__add-feedback {
  color: #fff !important;
}

.reviews__add-feedback-text,
.reviews__add-feedback-text-youtube,
.discountuser__add-feedback-text {
  color: #fff !important;
}

/* 5. Feedback arrows not squished */
.reviews__arrow-container,
.discountuser__arrow-container,
.swiper-button-prev,
.swiper-button-next {
  min-width: 48px !important;
  width: 48px !important;
  min-height: 48px !important;
  height: 48px !important;
  flex: 0 0 48px !important;
  box-sizing: border-box;
}

.reviews__nav,
.discountuser__nav {
  padding-right: 20px !important;
  box-sizing: border-box;
}

.reviews__nav > div:empty,
.discountuser__nav > div:empty {
  display: none !important;
}

.reviews__arrow-block,
.discountuser__arrow-block {
  margin-left: auto;
}

@media (max-width: 767px) {
  .reviews__nav,
  .discountuser__nav {
    padding-right: 16px !important;
  }

  .reviews__arrow-container,
  .discountuser__arrow-container {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
}

/* 6. TikTok black benefit circles / buttons */
.bg-black {
  background-color: var(--pl-surface-3) !important;
  border: 1px solid var(--pl-border) !important;
}

.bg-black img,
.bg-black svg {
  filter: none !important;
}

/* TikTok nav active gradient effect still readable */
.tikTokServicesNav__link--active.btnTiktokEffect,
.btnTiktokEffect.tikTokServicesNav__link--active {
  color: var(--pl-primary) !important;
  background: var(--pl-surface) !important;
}

.tikTokServicesNav__link--active.btnTiktokEffect::before,
.tikTokServicesNav__link--active.btnTiktokEffect::after {
  opacity: 0.35;
}

/* 7. TikTok / modern FAQ body padding */
div.border.rounded-3xl.overflow-hidden.relative .faq-answer-injected,
div.border.rounded-3xl.overflow-hidden.relative [class*="max-h-0"],
div.border.rounded-3xl.overflow-hidden.relative [style*="max-height: 0"],
div.border.rounded-3xl.overflow-hidden.relative [style*="max-height:0"] {
  padding: 0 24px 20px !important;
  line-height: 1.7;
}

div.border.rounded-3xl.overflow-hidden.relative .cursor-pointer {
  padding: 20px 24px !important;
}

/* 8. Services page cards keep icon + controls on one row */
.otherServiceCard {
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  position: relative;
  min-height: 220px;
  padding-right: 400px !important;
}

.otherServiceCard__blocks-img,
.otherServiceCard__img {
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  display: flex;
  align-items: center;
}

.otherServiceCard__blocks-img {
  justify-content: center;
  padding: 24px;
}

.otherServiceCard__block-img {
  background: var(--pl-surface-2);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-sm);
  padding: 14px 18px;
  min-width: 140px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.otherServiceCard__buy-block {
  position: absolute !important;
  top: 50% !important;
  right: 28px !important;
  transform: translateY(-50%);
  width: 340px !important;
  max-width: 340px !important;
  margin-left: 0 !important;
}

.otherServiceCard__title {
  text-align: left !important;
  justify-content: flex-start !important;
}

@media (max-width: 991px) {
  .otherServiceCard {
    flex-wrap: wrap !important;
    padding-right: 28px !important;
  }

  .otherServiceCard__buy-block {
    position: static !important;
    transform: none;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .otherServiceCard {
    padding-right: 20px !important;
  }

  .otherServiceCard__blocks-img {
    padding: 16px;
  }

  .otherServiceCard__block-img {
    min-width: 120px;
    min-height: 80px;
  }
}

/* 9 & 10. Account page balance / go shopping */
.account__tarif-block {
  background: var(--pl-surface) !important;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  box-shadow: var(--pl-shadow);
  padding: 24px;
}

.account__input,
.account__input2 {
  background: var(--pl-surface-2);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-sm);
  padding: 12px 16px;
}

.account__btn {
  margin-top: 24px !important;
  display: flex;
  justify-content: center;
}

.account__btn .auth-btns,
.account__btn .auth-btns__btn {
  width: auto;
  max-width: none;
}

.account__footer .auth-btns-account-page,
.account__footer .auth-btns-account-page__btn {
  width: auto;
  max-width: none;
}

.internalHeader__client-nav-btn-block {
  background: var(--pl-primary) !important;
  color: #fff !important;
  border-color: var(--pl-primary) !important;
  border-radius: var(--pl-radius-sm) !important;
  padding: 10px 18px !important;
  font-weight: 600;
}

.account__footer {
  background: linear-gradient(135deg, var(--pl-primary) 0%, #7c3aed 100%) !important;
}

.client__current-balance {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.client__balance-text {
  color: var(--pl-text-secondary);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.client__balance-value {
  color: var(--pl-text);
  font-weight: 800;
  margin-left: 4px;
}

.client__current-balance button {
  background: var(--pl-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--pl-radius-sm) !important;
  padding: 6px 14px !important;
  font-size: 14px !important;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
}

/* 11. Internal header nav visible on desktop */
.burger {
  display: none !important;
}

.burger.burger-open {
  display: block !important;
}

@media (min-width: 992px) {
  .internalHeader__pc {
    display: flex !important;
    align-items: center;
  }

  .internalHeader__mobile {
    display: none !important;
  }

  .internalHeader__nav-block {
    flex-direction: row !important;
    align-items: center !important;
  }

  .internalHeader__nav-text {
    margin-bottom: 0 !important;
    margin-right: 28px;
    color: var(--pl-text-secondary);
  }

  .internalHeader__nav-text-active {
    background: var(--pl-primary) !important;
    color: #fff !important;
    border-radius: 999px;
    padding: 8px 14px !important;
    margin-right: 0;
  }

  .internalHeader__nav-fixed {
    min-width: 110px;
    text-align: center;
    padding: 8px 14px;
    border-radius: 999px;
    margin-right: 8px;
  }

  .internalHeader__sign-in {
    width: auto !important;
  }
}

/* 12 & 13. Contact page layout and icon input */
.contact__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact__inner {
  flex: 1 1 520px;
  max-width: 600px;
}

.contact__info-blocks,
.contact__small-version {
  flex: 1 1 340px;
  max-width: 420px;
  width: auto !important;
}

.contact__textField,
.textarea-info__textarea {
  padding-left: 18px !important;
}

.contact__form-card.contact__email {
  position: relative;
}

.contact__form-card.contact__email::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--pl-text-muted);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.6;
}

.contact__info-block,
.contactUsBlockSocial,
.contact__chooseOrder-card {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  box-shadow: var(--pl-shadow-xs);
}

.contact__info-data-block,
.contactUsBlockSocial__social {
  gap: 12px;
}

/* 14. Blog category pills readable */
.blog__category--active {
  color: #fff !important;
}

.blog__category {
  color: var(--pl-text-secondary);
}

/* 15. FAQ page answer below question */
.faq__inner .panel-block,
.faq__inner .panel-block-color,
.faq__inner .panel-block-update,
.faq__inner .panel-block-color-update {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 12px;
}

.faq__inner .panel-title {
  width: 100%;
}

.faq__inner .panel-text,
.faq__inner .faq-answer-injected {
  max-width: 100% !important;
  width: 100%;
  display: block !important;
}

/* 16. FAQ last item same style as others */
.faq__inner .panel-block-color,
.faq__inner .panel-block-color-update {
  background: var(--pl-surface) !important;
  border: 1px solid var(--pl-border) !important;
}

.faq__inner .panel-block-color:hover,
.faq__inner .panel-block-color-update:hover {
  border-color: var(--pl-border-strong) !important;
}

@media (max-width: 480px) {
  .box__card {
    width: 100% !important;
  }

  .servicesNav__link,
  .servicesNavYoutube__link,
  .tikTokServicesNav__link {
    min-width: auto;
    padding: 0 12px !important;
    font-size: 14px;
  }

  .reviews__nav,
  .discountuser__nav {
    justify-content: center;
  }

  .blog__inner-cards {
    grid-template-columns: 1fr;
  }

  .otherServiceCard {
    padding-right: 20px !important;
  }
}
