/* 01. DESIGN TOKENS */

:root {
  --pp-navy: #030637;
  --pp-purple: #3C0753;
  --pp-plum: #720455;
  --pp-magenta: #910A67;
  --pp-bg: #f7f8fb;
  --pp-card: #ffffff;
  --pp-ink: #1b1d24;
  --pp-text: #626670;
  --pp-muted: #8b9098;
  --pp-line: rgba(60, 7, 83, 0.11);
  --pp-sidebar-width: 260px;
  --pp-topbar-height: 70px;
  --pp-radius-sm: 10px;
  --pp-radius-md: 16px;
  --pp-radius-lg: 24px;
  --pp-shadow-sm: 0 8px 24px rgba(60, 7, 83, 0.06);
  --pp-shadow-md: 0 18px 45px rgba(60, 7, 83, 0.10);
  --pp-shadow-lg: 0 26px 70px rgba(3, 6, 55, 0.16);
  --pp-gradient: linear-gradient(
      135deg,
      var(--pp-navy),
      var(--pp-purple),
      var(--pp-plum)
    );
  --tk-navy: #030637;
  --tk-purple: #3C0753;
  --tk-plum: #720455;
  --tk-magenta: #910A67;
  --tk-ink: #17171a;
  --tk-text: #5f606a;
  --tk-muted: #858690;
  --tk-white: #ffffff;
  --tk-soft: #fbf9ff;
  --tk-soft-2: #f7f2fb;
  --tk-line: rgba(60, 7, 83, 0.12);
  --tk-green: #119b68;
  --tk-gold: #ffb000;
  --tk-radius-sm: 12px;
  --tk-radius-md: 18px;
  --tk-radius-lg: 26px;
  --tk-shadow-sm: 0 8px 24px rgba(60, 7, 83, 0.06);
  --tk-shadow-md: 0 18px 50px rgba(60, 7, 83, 0.10);
  --tk-shadow-lg: 0 28px 80px rgba(60, 7, 83, 0.14);
  --tk-gradient: linear-gradient(
      90deg,
      var(--tk-purple),
      var(--tk-plum),
      var(--tk-magenta)
    );
}


/* 02. THEME RULES */

body {
  margin: 0;
  background: var(--pp-bg);
  color: var(--pp-ink);
  font-family: -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none !important;
}

.pp-authenticated {
  background: radial-gradient(
      circle at 86% 8%,
      rgba(145, 10, 103, 0.045),
      transparent 26%
    ),
    var(--pp-bg);
}

.pp-guest {
  background: #fff;
}

.pp-guest-main, .tk-public-content {
  min-height: calc(100vh - 140px);
  background: #fff;
}

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body.pp-guest {
  display: block;
  min-height: 0;
  background: #fbfbfc;
}

body.pp-guest .pp-guest-main, body.pp-guest .tk-public-content {
  display: block;
  min-height: 0;
  margin: 0;
  padding-bottom: 0;
  background: #fff;
}

body.pp-guest .tk-public-content > *:last-child {
  margin-bottom: 0 !important;
}

body.pp-guest .tk-footer {
  display: block;
  clear: both;
  margin: 0;
  padding-bottom: 24px;
  background: #fbfbfc;
}

body.pp-authenticated {
  min-height: 100vh;
}

body.pp-authenticated .pp-private-footer {
  clear: both;
  margin-top: 0;
}

.pp-app {
  min-height: 100vh;
}

.pp-sidebar-brand a {
  display: flex;
  align-items: center;
  max-width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.pp-sidebar-brand img {
  max-width: 180px;
  max-height: 42px;
  width: auto;
  height: auto;
}

.pp-sidebar-section-title {
  padding: 12px 13px 7px;
  color: rgba(255, 255, 255, 0.40);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pp-sidebar-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-sidebar-nav li {
  margin: 4px 0;
}

.pp-sidebar-nav li a:hover {
  transform: translateX(2px);
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.pp-sidebar-nav .navbar-icon {
  width: 24px;
  margin-right: 9px;
  font-size: 15px;
  text-align: center;
}

.pp-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  color: #fff;
  box-shadow: 10px 0 36px rgba(3, 6, 55, 0.10);
  width: 258px;
  background: radial-gradient(
      circle at 50% 0,
      rgba(145, 10, 103, 0.34),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #030637 0%,
      #13042f 52%,
      #3C0753 100%
    );
}

.pp-sidebar-brand {
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 72px;
}

.pp-sidebar-nav {
  padding: 18px 13px 26px;
  padding-top: 20px;
}

.pp-sidebar-nav li a {
  display: flex;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
  min-height: 46px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 650;
}

.pp-sidebar-nav li.active > a {
  border-color: rgba(255, 255, 255, 0.10);
  color: #fff;
  background: linear-gradient(
      90deg,
      rgba(145, 10, 103, 0.32),
      rgba(255, 255, 255, 0.07)
    );
  box-shadow: inset 3px 0 0 #c85aa5,
    0 8px 20px rgba(3, 6, 55, 0.10);
}

.pp-topbar .navbar-nav > li > a {
  padding-top: 25px;
  padding-bottom: 25px;
  color: #555b65;
  font-size: 13px;
  font-weight: 650;
}

.pp-topbar .navbar-nav > li > a:hover, .pp-topbar .navbar-nav > li > a:focus {
  background: #fbf8fc;
  color: var(--pp-magenta);
}

.pp-mobile-toggle {
  display: none;
  float: left;
  margin: 17px 12px 0 0;
  padding: 8px 10px;
  border: 1px solid var(--pp-line);
  border-radius: 9px;
  background: #fff;
  color: var(--pp-navy);
  box-shadow: var(--pp-shadow-sm);
}

.pp-topbar .dropdown-menu {
  padding: 8px;
  border: 1px solid var(--pp-line);
  border-radius: 13px;
  box-shadow: var(--pp-shadow-md);
}

.pp-topbar .dropdown-menu > li > a {
  padding: 9px 11px;
  border-radius: 8px;
  font-size: 12px;
}

.pp-topbar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1030;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--pp-line);
  border-radius: 0;
  backdrop-filter: blur(12px);
  left: 258px;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 8px 28px rgba(60, 7, 83, 0.035);
}

.pp-topbar .container-fluid {
  padding-right: 24px;
  padding-left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.pp-topbar-left {
  display: flex;
  align-items: center;
}

.pp-topbar-title {
  color: #2d2e34;
  font-size: 14px;
  font-weight: 800;
}

.pp-topbar .navbar-right {
  margin-right: 0;
}

.pp-balance-badge {
  display: inline-block;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  padding: 7px 12px;
  border: 1px solid rgba(145, 10, 103, 0.12);
  background: linear-gradient(
      135deg,
      rgba(145, 10, 103, 0.09),
      rgba(114, 4, 85, 0.04)
    );
  color: #720455;
}

.pp-content {
  padding: 28px 24px 38px;
}

.pp-main {
  min-height: calc(100vh - var(--pp-topbar-height));
  margin-left: 258px;
  padding-top: 72px;
  background: radial-gradient(
      circle at 88% 0,
      rgba(145, 10, 103, 0.035),
      transparent 26%
    ),
    #f8f8fb;
}

.pp-footer {
  margin-left: var(--pp-sidebar-width);
  padding: 18px 24px;
  border-top: 1px solid var(--pp-line);
  background: #fff;
  color: var(--pp-muted);
  font-size: 12px;
}

.pp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.pp-footer-links a {
  margin-left: 14px;
  color: #6f7480;
  font-weight: 650;
}

.pp-footer-links a:hover {
  color: var(--pp-magenta);
}

.tk-nav .navbar-brand img {
  max-width: 180px;
  max-height: 43px;
}

.tk-brandmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 9px;
  border-radius: 11px;
  background: var(--pp-gradient);
  color: #fff;
  box-shadow: -4px -2px 0 rgba(145, 10, 103, 0.18),
    4px 2px 0 rgba(114, 4, 85, 0.18);
}

.tk-nav .navbar-nav > li > a:hover, .tk-nav .navbar-nav > li > a:focus, .tk-nav .navbar-nav > li.active > a {
  background: #fbf8fc;
  color: var(--pp-magenta);
}

.tk-language-nav {
  margin-left: 8px;
}

.tk-nav-cta:hover, .tk-nav-cta:focus {
  background: linear-gradient(
    90deg,
    var(--pp-purple),
    var(--pp-plum)
  ) !important;
  color: #fff !important;
}

.tk-nav {
  margin: 0;
  border: 0;
  border-radius: 0;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1050;
  min-height: 72px;
  border-bottom: 1px solid rgba(60, 7, 83, 0.08);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 8px 30px rgba(60, 7, 83, 0.035);
}

.tk-nav .navbar-brand {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  color: var(--pp-ink) !important;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.035em;
  height: 72px;
}

.tk-nav .navbar-nav > li > a {
  padding: 25px 12px;
  padding-top: 26px;
  padding-bottom: 26px;
  color: #5e6069;
  font-size: 13px;
  font-weight: 650;
}

.tk-nav .navbar-nav > li > a:hover, .tk-nav .navbar-nav > li > a:focus {
  background: transparent;
  color: #720455;
}

.tk-nav .navbar-nav > li.open > a, .tk-nav .navbar-nav > li.open > a:hover, .tk-nav .navbar-nav > li.open > a:focus {
  background: #fbf8fc;
  color: #720455;
}

.tk-nav .caret {
  margin-left: 5px;
}

.tk-nav .dropdown-menu {
  min-width: 250px;
  padding: 10px;
  border: 1px solid rgba(60, 7, 83, 0.10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 22px 55px rgba(60, 7, 83, 0.12),
    0 2px 8px rgba(60, 7, 83, 0.03);
}

.tk-nav .dropdown-menu > li > a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border-radius: 9px;
  color: #565861;
  font-size: 12px;
  font-weight: 650;
}

.tk-nav .dropdown-menu > li > a i {
  width: 17px;
  color: #910A67;
  text-align: center;
}

.tk-nav .dropdown-menu > li > a:hover, .tk-nav .dropdown-menu > li > a:focus {
  background: #faf5fb;
  color: #720455;
}

.tk-dropdown-title {
  padding: 7px 11px 5px;
  color: #9a7d93;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tk-signin-link > a {
  color: #303138 !important;
}

.tk-nav-cta {
  margin: 15px 0 15px 9px !important;
  color: #fff !important;
  min-height: 42px;
  margin-top: 15px !important;
  margin-bottom: 15px !important;
  padding: 11px 18px !important;
  border-radius: 11px;
  background: linear-gradient(
      90deg,
      #3C0753 0%,
      #720455 52%,
      #910A67 100%
    ) !important;
  box-shadow: 0 12px 26px rgba(114, 4, 85, 0.20);
  font-weight: 800 !important;
}

.tk-footer-brand img {
  max-width: 180px;
  max-height: 44px;
}

.tk-footer p {
  margin: 0;
  color: #838791;
  font-size: 12px;
  line-height: 1.65;
}

.tk-copyline {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid #e7e7ea;
  color: #999ba2;
  font-size: 11px;
  text-align: center;
}

.tk-footer {
  padding: 64px 0 24px;
  border-top: 1px solid rgba(60, 7, 83, 0.08);
  background: radial-gradient(
      circle at 10% 0,
      rgba(145, 10, 103, 0.045),
      transparent 28%
    ),
    #fbfbfc;
}

.tk-footer-top {
  padding-bottom: 34px;
}

.tk-footer-brand {
  color: var(--pp-ink);
  font-weight: 900;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.tk-footer-mark {
  margin-right: 9px;
}

.tk-footer-intro {
  max-width: 320px;
  color: #747780 !important;
  font-size: 13px !important;
  line-height: 1.72 !important;
}

.tk-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}

.tk-footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(145, 10, 103, 0.10);
  border-radius: 999px;
  background: #fff;
  color: #6c6e77;
  font-size: 10px;
  font-weight: 700;
}

.tk-footer-badges i {
  color: #910A67;
}

.tk-footer h4 {
  margin: 0 0 14px;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 16px;
  color: #26272d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.tk-footer a {
  display: block;
  padding: 5px 0;
  color: #73757d;
  font-size: 12px;
}

.tk-footer a:hover {
  color: #720455;
}

.tk-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #e9e9ec;
  color: #989aa1;
  font-size: 11px;
}

.tk-footer::before, .tk-footer::after, .pp-footer::before, .pp-footer::after {
  display: table;
  content: " ";
}

.tk-footer::after, .pp-footer::after {
  clear: both;
}

#notify-wrapper {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  min-width: 260px;
  max-width: 420px;
  border: 0;
  border-radius: 14px;
  box-shadow: var(--pp-shadow-lg);
}

.pp-rtl .pp-sidebar {
  right: 0;
  left: auto;
}

.pp-rtl .pp-topbar {
  right: var(--pp-sidebar-width);
  left: 0;
}

.pp-rtl .pp-main, .pp-rtl .pp-footer {
  margin-right: var(--pp-sidebar-width);
  margin-left: 0;
}

.pp-rtl .pp-sidebar-nav .navbar-icon {
  margin-right: 0;
  margin-left: 9px;
}


.tk-page, .tk-page * {
  box-sizing: border-box;
}

.tk-page {
  overflow: hidden;
  background: var(--tk-white);
  color: var(--tk-ink);
  font-family: -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

.tk-page a {
  text-decoration: none !important;
}

.tk-page .container {
  max-width: 1170px;
}

.tk-section, .tk-feature {
  position: relative;
  padding: 82px 0;
}

.tk-soft {
  background: radial-gradient(
      circle at 50% 0,
      rgba(145, 10, 103, 0.035),
      transparent 34%
    ),
    var(--tk-soft);
}

.tk-divider {
  border-top: 1px solid var(--tk-line);
}

.tk-page a:focus, .tk-page button:focus, .tk-page input:focus {
  outline: none;
}

.tk-page a:focus-visible, .tk-page button:focus-visible, .tk-page input:focus-visible {
  outline: 3px solid rgba(145, 10, 103, 0.24);
  outline-offset: 3px;
}

.tk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid rgba(145, 10, 103, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--tk-magenta);
  box-shadow: 0 4px 12px rgba(60, 7, 83, 0.05);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tk-highlight {
  background: var(--tk-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tk-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.tk-heading h2, .tk-copy h2 {
  margin: 14px 0 15px;
  color: var(--tk-ink);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.tk-heading p, .tk-copy > p {
  margin: 0;
  color: var(--tk-text);
  font-size: 16px;
  line-height: 1.75;
}

.tk-sub {
  margin: 24px 0;
}

.tk-sub h3 {
  margin: 0 0 10px;
  color: var(--tk-ink);
  font-size: 23px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

.tk-heading-vibe {
  position: relative;
}

.tk-heading-vibe::after {
  content: "";
  display: block;
  width: 62px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--tk-purple),
    var(--tk-plum),
    var(--tk-magenta)
  );
  box-shadow: 0 5px 16px rgba(145, 10, 103, 0.15);
}

.tk-actions {
  margin-top: 28px;
}

.tk-btn-primary, .tk-btn-ghost {
  min-height: 54px;
  margin: 0 8px 10px 0;
  padding: 15px 25px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.tk-btn-primary {
  border: 0;
  background: var(--tk-gradient);
  color: #fff;
  box-shadow: 0 14px 30px rgba(114, 4, 85, 0.22);
}

.tk-btn-primary:hover, .tk-btn-primary:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(114, 4, 85, 0.28);
}

.tk-btn-ghost {
  border: 1px solid rgba(114, 4, 85, 0.24);
  background: #fff;
  color: var(--tk-plum);
}

.tk-btn-ghost:hover, .tk-btn-ghost:focus {
  border-color: var(--tk-plum);
  color: var(--tk-plum);
  transform: translateY(-2px);
  box-shadow: var(--tk-shadow-sm);
}

.tk-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 72px;
  background: radial-gradient(
      circle at 15% 16%,
      rgba(145, 10, 103, 0.08),
      transparent 27%
    ),
    radial-gradient(
      circle at 85% 50%,
      rgba(114, 4, 85, 0.07),
      transparent 30%
    ),
    #fff;
}

.tk-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(145, 10, 103, 0.08);
  border-radius: 50%;
}

.tk-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 24px;
}

.tk-hero h1 {
  max-width: 730px;
  margin: 21px 0 21px;
  color: var(--tk-ink);
  font-size: 58px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.tk-hero p {
  max-width: 675px;
  margin: 0;
  color: var(--tk-text);
  font-size: 17px;
  line-height: 1.75;
}

.tk-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: #73747d;
  font-size: 12px;
  font-weight: 650;
}

.tk-hero-visual {
  position: relative;
  min-height: 420px;
  max-width: 480px;
  margin: 0 auto;
}

.tk-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(3, 6, 55, 0.42);
  border-radius: 50%;
}

.tk-ring.r1 {
  width: 295px;
  height: 295px;
}

.tk-ring.r2 {
  width: 365px;
  height: 365px;
  opacity: 0.65;
}

.tk-logo-box {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 180px;
  transform: translate(-50%, -50%) rotate(-8deg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: radial-gradient(
      circle at 70% 20%,
      rgba(145, 10, 103, 0.7),
      transparent 42%
    ),
    linear-gradient(145deg, var(--tk-navy), var(--tk-purple));
  color: #fff;
  box-shadow: 0 28px 65px rgba(3, 6, 55, 0.25),
    0 0 40px rgba(145, 10, 103, 0.15);
  font-size: 58px;
}

.tk-stat {
  position: absolute;
  min-width: 142px;
  padding: 15px 16px;
  border: 1px solid rgba(60, 7, 83, 0.10);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--tk-shadow-md);
  backdrop-filter: blur(10px);
}

.tk-stat small {
  display: block;
  color: #7c7d85;
  font-size: 10px;
}

.tk-stat strong {
  display: block;
  margin: 2px 0;
  color: var(--tk-ink);
  font-size: 22px;
  font-weight: 900;
}

.tk-stat b {
  color: var(--tk-green);
  font-size: 10px;
}

.tk-stat.s1 {
  top: 68px;
  left: 8px;
}

.tk-stat.s2 {
  right: 4px;
  bottom: 82px;
}

.tk-stat.s3 {
  bottom: 28px;
  left: 48px;
}

.tk-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.tk-orb-a {
  top: -36px;
  left: -48px;
  width: 110px;
  height: 110px;
  background: rgba(145, 10, 103, 0.08);
  filter: blur(2px);
}

.tk-analyser-box {
  max-width: 780px;
  margin: 28px auto 0;
  padding: 26px;
  border: 1px solid var(--tk-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--tk-shadow-md);
}

.tk-analyser-box label {
  display: block;
  margin-bottom: 9px;
  color: var(--tk-ink);
  font-size: 13px;
  font-weight: 800;
}

.tk-input-row {
  display: flex;
  gap: 10px;
}

.tk-input {
  flex: 1;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid #dddde4;
  border-radius: 12px;
  background: #fff;
  color: var(--tk-ink);
  outline: 0;
  transition: border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.tk-input:focus {
  border-color: var(--tk-magenta);
  box-shadow: 0 0 0 3px rgba(145, 10, 103, 0.07);
}

.tk-login-section {
  background: radial-gradient(circle at 50% 0%, rgba(145, 10, 103, 0.07), transparent 34%),
    var(--tk-soft);
}

.tk-login-card {
  max-width: 920px;
  padding: 30px;
  border-color: rgba(145, 10, 103, 0.13);
  box-shadow: 0 22px 55px rgba(60, 7, 83, 0.09),
    0 0 0 1px rgba(145, 10, 103, 0.02);
}

.tk-login-card .tk-input-row {
  align-items: stretch;
}

.tk-login-card .tk-input {
  min-height: 56px;
  padding-left: 17px;
}

.tk-login-card .tk-btn-primary {
  min-width: 170px;
  min-height: 56px;
  margin: 0;
}

.tk-login-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  font-size: 12px;
}

.tk-login-remember {
  margin: 0 !important;
  color: var(--tk-text) !important;
  font-weight: 700 !important;
}

.tk-login-remember input {
  margin-right: 6px;
  vertical-align: -1px;
}

.tk-login-link {
  color: var(--tk-plum) !important;
  font-weight: 800;
}

.tk-login-link:hover, .tk-login-link:focus {
  color: var(--tk-magenta) !important;
}

.tk-login-captcha {
  margin-top: 18px;
}

.tk-google-login {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--tk-line);
  text-align: center;
}

.tk-login-signup {
  margin: 20px 0 0;
  color: var(--tk-text);
  font-size: 13px;
  text-align: center;
}

.tk-analyse-message {
  min-height: 20px;
  margin-top: 10px;
  color: var(--tk-muted);
  font-size: 12px;
}

.tk-analyse-message.is-error {
  color: #b3261e;
}

.tk-analyse-message.is-success {
  color: var(--tk-green);
}

.tk-vibe-section, .tk-vibe-feature {
  position: relative;
  isolation: isolate;
}

.tk-vibe-section::before, .tk-vibe-feature::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(145, 10, 103, 0.035);
  filter: blur(4px);
  pointer-events: none;
}

.tk-vibe-section::before {
  top: 6%;
  right: -180px;
}

.tk-vibe-section:nth-of-type(even)::before {
  right: auto;
  left: -180px;
  background: rgba(60, 7, 83, 0.03);
}

.tk-vibe-hero {
  background: radial-gradient(circle at 15% 14%, rgba(145, 10, 103, 0.10), transparent 27%),
    radial-gradient(circle at 83% 48%, rgba(114, 4, 85, 0.075), transparent 31%),
    linear-gradient(180deg, #ffffff 0%, #fdfbff 100%);
}

.tk-tool-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
}

.tk-tool-grid a {
  padding: 11px 15px;
  border: 1px solid rgba(145, 10, 103, 0.14);
  border-radius: 11px;
  background: #fff;
  color: var(--tk-plum);
  box-shadow: var(--tk-shadow-sm);
  font-size: 13px;
  font-weight: 750;
  transition: transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.tk-tool-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(145, 10, 103, 0.30);
  box-shadow: var(--tk-shadow-md);
}

#services .row, #why-choose .row, #how-it-works .row, #more-services .row, #regional-hubs .row {
  display: flex;
  flex-wrap: wrap;
}

#services .col-md-4, #why-choose .col-md-4, #how-it-works .col-md-4, #more-services .col-md-4, #regional-hubs .col-md-3 {
  display: flex;
  float: none;
}

.tk-service-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(145, 10, 103, 0.035);
  pointer-events: none;
}

.tk-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(145, 10, 103, 0.22);
  box-shadow: var(--tk-shadow-lg);
}

.tk-service-card h3 {
  min-height: 48px;
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 850;
  line-height: 1.3;
}

.tk-service-card h3 a {
  color: #1c1c20;
}

.tk-service-card p {
  min-height: 66px;
  margin: 0 0 10px;
  color: #74757e;
  font-size: 13px;
  line-height: 1.72;
}

.tk-service-card ul {
  margin: auto 0 17px;
  padding: 0;
  list-style: none;
}

.tk-service-card li {
  margin: 8px 0;
  color: #666770;
  font-size: 12px;
}

.tk-service-card li i {
  margin-right: 7px;
  color: var(--tk-magenta);
}

.tk-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0 18px;
  border: 1px solid rgba(145, 10, 103, 0.20);
  border-radius: 10px;
  background: #fff;
  color: var(--tk-plum);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.tk-card-btn:hover {
  transform: translateY(-1px);
  background: var(--tk-gradient);
  color: #fff;
}

.tk-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 360px;
  margin-bottom: 26px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--tk-line);
  border-radius: 21px;
  box-shadow: 0 12px 34px rgba(60, 7, 83, 0.045);
  transition: transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  background: radial-gradient(circle at 100% 0, rgba(145, 10, 103, 0.045), transparent 26%),
    #ffffff;
}

.tk-service-card:hover .tk-service-icon {
  transform: translateY(-2px) scale(1.04);
  background: linear-gradient(
    145deg,
    rgba(145, 10, 103, 0.10),
    rgba(60, 7, 83, 0.04)
  );
}

.tk-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border: 1px solid rgba(145, 10, 103, 0.13);
  border-radius: 15px;
  background: linear-gradient(
      145deg,
      rgba(145, 10, 103, 0.04),
      rgba(60, 7, 83, 0.02)
    );
  color: var(--tk-magenta);
  font-size: 19px;
  transition: transform 0.2s ease,
    background 0.2s ease;
}

.tk-trust-card {
  padding: 34px;
  border: 1px solid var(--tk-line);
  border-radius: var(--tk-radius-lg);
  background: radial-gradient(
      circle at 15% 5%,
      rgba(145, 10, 103, 0.035),
      transparent 32%
    ),
    #fff;
  box-shadow: var(--tk-shadow-md);
}

.tk-trust-card .row {
  display: flex;
  align-items: center;
}

.tk-trust-card .col-md-6 {
  float: none;
}

.tk-trust-card h2 {
  margin: 14px 0 17px;
  color: var(--tk-ink);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

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

.tk-hubs {
  margin-top: 20px;
}

.tk-hubs a {
  display: inline-block;
  margin: 0 6px 8px 0;
  padding: 11px 16px;
  border: 1px solid rgba(145, 10, 103, 0.16);
  border-radius: 10px;
  background: #fff;
  color: var(--tk-plum);
  box-shadow: 0 5px 12px rgba(60, 7, 83, 0.05);
  font-size: 12px;
  font-weight: 750;
}

.tk-profile-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  background: radial-gradient(
      circle at 50% 15%,
      rgba(145, 10, 103, 0.40),
      transparent 28%
    ),
    linear-gradient(145deg, var(--tk-navy), var(--tk-purple));
  box-shadow: 0 25px 65px rgba(3, 6, 55, 0.23);
}

.tk-grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: linear-gradient(rgba(255,255,255,0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.13) 1px, transparent 1px);
  background-size: 48px 48px;
}

.tk-profile-main {
  position: absolute;
  inset: 28px;
  color: #fff;
  text-align: center;
}

.tk-profile-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: 5px auto 15px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--tk-magenta),
    var(--tk-plum)
  );
  box-shadow: 0 0 30px rgba(145, 10, 103, 0.42);
  font-size: 31px;
}

.tk-profile-main h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 850;
}

.tk-profile-main > span {
  color: rgba(255,255,255,0.66);
  font-size: 12px;
}

.tk-profile-stats {
  position: absolute;
  right: 0;
  bottom: 42px;
  left: 0;
}

.tk-pstat {
  padding: 17px 7px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
}

.tk-pstat strong {
  display: block;
  color: #e8c1df;
  font-size: 18px;
}

.tk-pstat span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,0.52);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.tk-feature {
  overflow: hidden;
  border-top: 1px solid rgba(60, 7, 83, 0.07);
  background: #fff;
}

.tk-feature.alt {
  background: radial-gradient(
      circle at 88% 48%,
      rgba(145, 10, 103, 0.055),
      transparent 30%
    ),
    #fff;
}

.tk-feature .row {
  display: flex;
  align-items: center;
}

.tk-feature .col-md-6 {
  float: none;
}

.tk-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  max-width: 600px;
}

.tk-feature-copy.left {
  padding-right: 34px;
}

.tk-feature-copy.right {
  padding-left: 34px;
}

.tk-feature-copy h2 {
  margin: 13px 0 20px;
  color: var(--tk-ink);
  font-size: 41px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.tk-feature-copy > p {
  margin: 0;
  color: var(--tk-text);
  font-size: 16px;
  line-height: 1.75;
}

.tk-feature-copy .tk-sub {
  margin: 23px 0 24px;
}

.tk-feature-copy .tk-sub h3 {
  font-size: 22px;
}

.tk-feature-copy .tk-sub p {
  font-size: 15px;
  line-height: 1.72;
}

.tk-feature-copy .tk-btn-primary {
  align-self: flex-start;
  min-width: 220px;
  margin-top: auto;
}

.tk-service-image-wrap {
  position: relative;
  width: 100%;
  height: 430px;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(60, 7, 83, 0.10);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 68px rgba(60, 7, 83, 0.12),
    0 0 50px rgba(145, 10, 103, 0.08);
}

.tk-service-image-wrap::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -18px;
  left: 8%;
  height: 42px;
  border-radius: 50%;
  background: rgba(145, 10, 103, 0.12);
  filter: blur(20px);
  pointer-events: none;
}

.tk-service-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
}

.tk-vibe-feature::before {
  bottom: 4%;
  left: -190px;
}

.tk-vibe-feature .tk-service-image-wrap {
  transition: transform 0.28s ease,
    box-shadow 0.28s ease;
}

.tk-vibe-feature:hover .tk-service-image-wrap {
  transform: translateY(-4px);
  box-shadow: 0 30px 78px rgba(60, 7, 83, 0.15),
    0 0 58px rgba(145, 10, 103, 0.10);
}

.tk-vibe-feature .tk-feature-copy h2 {
  text-wrap: balance;
}

.tk-more-card {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 86px;
  margin-bottom: 16px;
  padding: 18px 19px;
  border: 1px solid var(--tk-line);
  border-radius: 16px;
  background: #fff;
  color: #29292e;
  transition: transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.tk-more-card:hover {
  transform: translateY(-2px);
  border-color: rgba(145, 10, 103, 0.23);
  box-shadow: var(--tk-shadow-md);
}

.tk-more-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--tk-soft-2);
  color: var(--tk-magenta);
}

.tk-more-card strong {
  display: block;
  color: var(--tk-ink);
  font-size: 13px;
}

.tk-more-card small {
  display: block;
  margin-top: 3px;
  color: #92939b;
  font-size: 10px;
}

.tk-more-card > .fa-arrow-right {
  margin-left: auto;
  color: #aaa;
}

.tk-why-card {
  width: 100%;
  min-height: 215px;
  margin-bottom: 24px;
  padding: 26px;
  border: 1px solid var(--tk-line);
  border-radius: 19px;
  background: #fff;
  transition: transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.tk-why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(145, 10, 103, 0.20);
  box-shadow: var(--tk-shadow-md);
}

.tk-why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--tk-soft-2);
  color: var(--tk-magenta);
  font-size: 18px;
}

.tk-why-card h3 {
  margin: 0 0 8px;
  color: var(--tk-ink);
  font-size: 17px;
  font-weight: 850;
}

.tk-why-card p {
  margin: 0;
  color: #74757e;
  font-size: 13px;
  line-height: 1.72;
}

.tk-why-card, .tk-step-card, .tk-hub-card, .tk-more-card {
  position: relative;
  overflow: hidden;
}

.tk-why-card::after, .tk-step-card::after, .tk-hub-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: rgba(145, 10, 103, 0.035);
  pointer-events: none;
}

.tk-step-card {
  width: 100%;
  min-height: 230px;
  margin-bottom: 24px;
  padding: 28px;
  border: 1px solid var(--tk-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(60, 7, 83, 0.035);
}

.tk-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  margin-bottom: 19px;
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    var(--tk-purple),
    var(--tk-magenta)
  );
  color: #fff;
  box-shadow: 0 8px 18px rgba(114, 4, 85, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.tk-step-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 850;
}

.tk-step-card p {
  margin: 0;
  color: #74757e;
  font-size: 13px;
  line-height: 1.72;
}

.tk-step-card:hover .tk-step-num, .tk-why-card:hover .tk-why-icon {
  transform: translateY(-2px) rotate(-2deg);
}

.tk-step-num, .tk-why-icon {
  transition: transform 0.2s ease;
}

.tk-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.tk-live {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(145, 10, 103, 0.18);
  color: #e9c6df;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.tk-metric {
  min-height: 98px;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 15px;
  background: rgba(255,255,255,0.045);
}

.tk-metric small {
  display: block;
  color: #aaa9b6;
  font-size: 10px;
}

.tk-metric strong {
  display: block;
  margin: 5px 0;
  color: #fff;
  font-size: 21px;
}

.tk-metric span {
  color: #61daa6;
  font-size: 10px;
  font-weight: 800;
}

.tk-chart {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 155px;
  padding: 22px 18px 15px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}

.tk-chart i {
  display: block;
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(
    180deg,
    #c77cae,
    var(--tk-magenta)
  );
}

.tk-chart i:nth-child(1) {
  height: 28%;
}

.tk-chart i:nth-child(2) {
  height: 42%;
}

.tk-chart i:nth-child(3) {
  height: 36%;
}

.tk-chart i:nth-child(4) {
  height: 55%;
}

.tk-chart i:nth-child(5) {
  height: 49%;
}

.tk-chart i:nth-child(6) {
  height: 70%;
}

.tk-chart i:nth-child(7) {
  height: 84%;
}

.tk-dashboard {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 26px;
  background: radial-gradient(
      circle at 88% 8%,
      rgba(145, 10, 103, 0.28),
      transparent 28%
    ),
    var(--tk-navy);
  color: #fff;
  box-shadow: 0 28px 78px rgba(3, 6, 55, 0.20);
  position: relative;
  overflow: hidden;
}

.tk-dashboard::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(145, 10, 103, 0.16);
  filter: blur(8px);
  pointer-events: none;
}

.tk-hub-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 180px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid var(--tk-line);
  border-radius: 19px;
  background: #fff;
  transition: transform 0.18s ease,
    box-shadow 0.18s ease;
}

.tk-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--tk-shadow-md);
}

.tk-hub-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 850;
}

.tk-hub-card p {
  margin: 0 0 14px;
  color: #74757e;
  font-size: 13px;
  line-height: 1.7;
}

.tk-hub-card a {
  margin-top: auto;
  color: var(--tk-plum);
  font-size: 12px;
  font-weight: 800;
}

.tk-reviews-shell {
  padding: 16px;
  border: 1px solid var(--tk-line);
  border-radius: var(--tk-radius-lg);
  background: linear-gradient(
      145deg,
      rgba(255,255,255,0.96),
      rgba(251,249,255,0.96)
    );
  box-shadow: var(--tk-shadow-md);
}

.tk-review-slide {
  display: none;
}

.tk-review-slide.active {
  display: block;
}

.tk-review-slide .row {
  display: flex;
}

.tk-review-slide .col-md-4 {
  display: flex;
  float: none;
}

.tk-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.tk-review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tk-review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #ecfff8, #d8f7eb);
  color: #147b5d;
  box-shadow: 0 7px 18px rgba(60, 7, 83, 0.09);
  font-weight: 850;
}

.tk-review-person strong {
  display: block;
  color: var(--tk-ink);
  font-size: 14px;
}

.tk-review-person span {
  display: block;
  margin-top: 2px;
  color: #7a7b83;
  font-size: 11px;
}

.tk-stars {
  color: var(--tk-gold);
  font-size: 12px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.tk-review-tags {
  margin: 17px 0 18px;
}

.tk-tag {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.tk-tag.service {
  border: 1px solid rgba(145, 10, 103, 0.16);
  background: #faf7ff;
  color: #6d18b8;
}

.tk-tag.result {
  border: 1px solid rgba(31, 177, 120, 0.22);
  background: #eafff6;
  color: #087d58;
}

.tk-review-card p {
  margin: 0;
  color: #55565e;
  font-size: 13px;
  line-height: 1.7;
}

.tk-review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.tk-review-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(145, 10, 103, 0.22);
  border-radius: 13px;
  background: #fff;
  color: var(--tk-plum);
  box-shadow: var(--tk-shadow-sm);
  transition: color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.tk-review-arrow:hover {
  transform: translateY(-1px);
  background: var(--tk-gradient);
  color: #fff;
}

.tk-review-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 90px;
  height: 39px;
  padding: 0 13px;
  border: 1px solid rgba(145, 10, 103, 0.10);
  border-radius: 999px;
  background: #fff;
}

.tk-review-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d7bdd1;
  transition: width 0.2s ease;
}

.tk-review-dot.active {
  width: 34px;
  background: var(--tk-gradient);
}

.tk-review-card {
  width: 100%;
  min-height: 235px;
  padding: 25px;
  border: 1px solid rgba(145, 10, 103, 0.15);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(60, 7, 83, 0.05);
  transition: transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.tk-review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(145, 10, 103, 0.24);
  box-shadow: 0 18px 42px rgba(60, 7, 83, 0.09);
}

.tk-engine {
  color: #fff;
  background: radial-gradient(
      circle at 82% 20%,
      rgba(145, 10, 103, 0.34),
      transparent 25%
    ),
    radial-gradient(
      circle at 20% 84%,
      rgba(114, 4, 85, 0.30),
      transparent 26%
    ),
    var(--tk-navy);
}

.tk-engine h2 {
  color: #fff;
}

.tk-engine p {
  color: #c8c7d2;
}

.tk-engine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.tk-engine-item {
  padding: 19px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 15px;
  background: rgba(255,255,255,0.05);
  transition: transform 0.18s ease,
    background 0.18s ease;
}

.tk-engine-item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}

.tk-engine-item i {
  margin-bottom: 11px;
  color: #e0a6d0;
}

.tk-engine-item strong {
  display: block;
  font-size: 13px;
}

.tk-engine-item small {
  color: #aaa9b6;
  font-size: 10px;
}

.tk-vibe-dark {
  position: relative;
  overflow: hidden;
}

.tk-vibe-dark::before, .tk-vibe-dark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.tk-vibe-dark::before {
  top: -130px;
  right: -80px;
  width: 330px;
  height: 330px;
  background: rgba(145, 10, 103, 0.16);
  filter: blur(10px);
}

.tk-vibe-dark::after {
  bottom: -150px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(114, 4, 85, 0.13);
  filter: blur(10px);
}

.tk-faq .panel-heading {
  padding: 0;
  border: 0;
  background: #fff;
}

.tk-faq .panel-title a {
  position: relative;
  display: block;
  padding: 18px 50px 18px 20px;
  color: #2d2d32;
  font-size: 14px;
  font-weight: 800;
}

.tk-faq .panel-title a::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #909099;
  font-size: 20px;
}

.tk-faq .panel-body {
  padding: 0 20px 20px;
  border-top: 0 !important;
  color: #74757e;
  font-size: 13px;
  line-height: 1.72;
}

.tk-faq .panel {
  margin-bottom: 11px;
  overflow: hidden;
  border: 1px solid var(--tk-line);
  border-radius: 13px !important;
  box-shadow: none;
  transition: border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.tk-faq .panel:hover {
  border-color: rgba(145, 10, 103, 0.18);
  box-shadow: 0 10px 26px rgba(60, 7, 83, 0.05);
}

.tk-cta-card {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--tk-radius-lg);
  background: radial-gradient(
      circle at 82% 12%,
      rgba(145, 10, 103, 0.42),
      transparent 28%
    ),
    radial-gradient(
      circle at 12% 90%,
      rgba(114, 4, 85, 0.34),
      transparent 29%
    ),
    linear-gradient(135deg, var(--tk-navy), var(--tk-purple));
  color: #fff;
  box-shadow: 0 28px 75px rgba(3, 6, 55, 0.20);
}

.tk-cta-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.tk-cta-card h2 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 13px 0;
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.tk-cta-card p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0;
  color: #cbc9d5;
  font-size: 15px;
  line-height: 1.75;
}

.tk-glow-card {
  position: relative;
  overflow: hidden;
}

.tk-glow-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -95px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(145, 10, 103, 0.12) 0%,
    rgba(145, 10, 103, 0) 72%
  );
  pointer-events: none;
}

.tk-glow-card::after {
  content: "";
  position: absolute;
  right: 24px;
  left: 24px;
  bottom: -22px;
  height: 42px;
  border-radius: 50%;
  background: rgba(114, 4, 85, 0.08);
  filter: blur(18px);
  pointer-events: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .tk-page .container {
  width: 970px;
  }

  .tk-hero h1 {
  font-size: 47px;
  }

  .tk-hero-visual {
  transform: scale(0.88);
  transform-origin: center;
  }

  .tk-heading h2, .tk-copy h2 {
  font-size: 35px;
  }

  .tk-feature-copy {
  min-height: 400px;
  }

  .tk-feature-copy.left {
  padding-right: 22px;
  }

  .tk-feature-copy.right {
  padding-left: 22px;
  }

  .tk-feature-copy h2 {
  font-size: 35px;
  }

  .tk-service-image-wrap {
  height: 400px;
  }

  .tk-trust-card h2 {
  font-size: 35px;
  }

  .tk-profile-visual {
  min-height: 400px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .tk-section, .tk-feature {
  padding: 62px 0;
  }

  .tk-hero {
  padding: 55px 0;
  }

  .tk-hero-copy {
  text-align: center;
  }

  .tk-hero h1 {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  font-size: 43px;
  }

  .tk-hero p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  }

  .tk-trust-row {
  justify-content: center;
  }

  .tk-hero-visual {
  margin-top: 10px;
  transform: scale(0.84);
  transform-origin: center;
  }

  .tk-heading h2, .tk-copy h2 {
  font-size: 33px;
  }

  #services .row, #why-choose .row, #how-it-works .row, #more-services .row, #regional-hubs .row, .tk-review-slide .row {
  display: flex;
  flex-wrap: wrap;
  }

  .tk-service-card {
  min-height: 350px;
  }

  .tk-feature .row {
  display: block;
  }

  .tk-feature .col-md-6 {
  float: left;
  width: 100%;
  }

  .tk-feature-copy {
  min-height: 0;
  max-width: 720px;
  margin: 30px auto 0;
  padding: 0 !important;
  }

  .tk-feature-copy h2 {
  font-size: 36px;
  }

  .tk-feature-copy .tk-btn-primary {
  margin-top: 0;
  }

  .tk-service-image-wrap {
  max-width: 720px;
  height: 420px;
  margin: 0 auto;
  }

  .tk-trust-card .row {
  display: block;
  }

  .tk-trust-card .col-md-6 {
  float: left;
  width: 100%;
  }

  .tk-profile-visual {
  margin-top: 28px;
  }

  .tk-dashboard {
  margin-top: 28px;
  }

  .tk-engine-grid {
  grid-template-columns: repeat(2, 1fr);
  }

  .tk-review-slide .col-md-4 {
  display: block;
  float: left;
  }

  .tk-review-card {
  min-height: 225px;
  margin-bottom: 18px;
  }
}

@media (max-width: 420px) {
  .tk-page .container {
  padding-right: 14px;
  padding-left: 14px;
  }

  .tk-hero h1 {
  font-size: 31px;
  }

  .tk-heading h2, .tk-copy h2 {
  font-size: 27px;
  }

  .tk-feature-copy h2 {
  font-size: 28px;
  }

  .tk-tool-grid {
  grid-template-columns: 1fr;
  }

  .tk-review-top {
  display: block;
  }

  .tk-stars {
  margin-top: 10px;
  }
}

@media (max-width: 1199px) {
  .tk-nav .navbar-nav > li > a {
  padding-right: 9px;
  padding-left: 9px;
  }

  .tk-nav-cta {
  padding-right: 14px !important;
  padding-left: 14px !important;
  }
}

@media (max-width: 991px) {
  body.pp-sidebar-open {
  overflow: hidden;
  }

  .pp-sidebar {
  transform: translateX(-100%);
  transition: transform 0.22s ease;
  }

  .pp-sidebar.open {
  transform: translateX(0);
  box-shadow: 10px 0 38px rgba(3, 6, 55, 0.24);
  }

  .pp-mobile-toggle {
  display: inline-block;
  }

  .pp-main, .pp-footer {
  margin-left: 0;
  }

  .pp-rtl .pp-sidebar {
  transform: translateX(100%);
  }

  .pp-rtl .pp-sidebar.open {
  transform: translateX(0);
  }

  .pp-rtl .pp-topbar {
  right: 0;
  left: 0;
  }

  .pp-rtl .pp-main, .pp-rtl .pp-footer {
  margin-right: 0;
  }

  .pp-topbar {
  left: 0;
  }

  .pp-main {
  margin-left: 0;
  }

  .pp-topbar-title {
  display: inline-block;
  }
}

@media (max-width: 767px) {
  .pp-topbar .container-fluid {
  padding-right: 14px;
  padding-left: 14px;
  }

  .pp-topbar .navbar-right {
  float: right !important;
  margin: 0;
  }

  .pp-topbar .navbar-right > li {
  float: left;
  }

  .pp-topbar .navbar-right > li > a {
  padding-right: 8px;
  padding-left: 8px;
  font-size: 12px;
  }

  .pp-content {
  padding: 20px 14px 30px;
  }

  .pp-footer {
  padding: 16px 14px;
  text-align: center;
  }

  .pp-footer-inner {
  display: block;
  }

  .pp-footer-links {
  margin-top: 8px;
  }

  .pp-footer-links a {
  margin: 0 7px;
  }

  .tk-brandmark {
  width: 32px;
  height: 32px;
  }

  .tk-nav .navbar-nav {
  margin-top: 8px;
  margin-bottom: 12px;
  }

  .tk-footer .row > div {
  margin-bottom: 28px;
  }

  .tk-page {
  overflow-x: hidden;
  }

  .tk-page .container {
  padding-right: 18px;
  padding-left: 18px;
  }

  .tk-section, .tk-feature {
  padding: 50px 0;
  }

  .tk-eyebrow {
  padding: 7px 11px;
  font-size: 9px;
  letter-spacing: 0.12em;
  }

  .tk-heading {
  margin-bottom: 28px;
  }

  .tk-heading h2, .tk-copy h2 {
  margin-top: 12px;
  font-size: 29px;
  line-height: 1.16;
  }

  .tk-heading p, .tk-copy > p {
  font-size: 14px;
  line-height: 1.7;
  }

  .tk-hero {
  padding: 43px 0 46px;
  }

  .tk-hero-copy {
  padding-top: 0;
  text-align: center;
  }

  .tk-hero h1 {
  max-width: 520px;
  margin: 17px auto 18px;
  font-size: 35px;
  line-height: 1.08;
  }

  .tk-hero p {
  margin-right: auto;
  margin-left: auto;
  font-size: 15px;
  line-height: 1.7;
  }

  .tk-actions {
  margin-top: 23px;
  }

  .tk-btn-primary, .tk-btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 51px;
  margin: 0 0 10px;
  }

  .tk-trust-row {
  justify-content: center;
  line-height: 1.5;
  }

  .tk-hero-visual {
  min-height: 315px;
  margin-top: 15px;
  margin-bottom: -45px;
  transform: scale(0.74);
  transform-origin: center top;
  }

  .tk-analyser-box {
  padding: 20px;
  }

  .tk-input-row {
  display: block;
  }

  .tk-input {
  width: 100%;
  margin-bottom: 10px;
  }

  .tk-tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  }

  .tk-tool-grid a {
  width: 100%;
  padding: 11px 8px;
  text-align: center;
  }

  #services .row, #why-choose .row, #how-it-works .row, #more-services .row, #regional-hubs .row, .tk-review-slide .row {
  display: block;
  }

  #services .col-md-4, #why-choose .col-md-4, #how-it-works .col-md-4, #more-services .col-md-4, #regional-hubs .col-md-3, .tk-review-slide .col-md-4 {
  display: block;
  float: none;
  width: 100%;
  }

  .tk-service-card, .tk-why-card, .tk-step-card, .tk-hub-card {
  min-height: 0;
  margin-bottom: 17px;
  }

  .tk-service-card {
  padding: 23px;
  }

  .tk-service-card h3, .tk-service-card p {
  min-height: 0;
  }

  .tk-card-btn {
  width: 100%;
  }

  .tk-feature .row {
  display: flex;
  flex-direction: column;
  }

  .tk-feature .col-md-6 {
  float: none;
  width: 100%;
  }

  .tk-feature-copy {
  min-height: 0;
  max-width: none;
  margin: 0;
  padding: 0 !important;
  }

  .tk-feature-copy h2 {
  margin: 12px 0 17px;
  font-size: 30px;
  }

  .tk-feature-copy > p {
  font-size: 14px;
  line-height: 1.7;
  }

  .tk-feature-copy .tk-sub {
  margin: 21px 0 22px;
  }

  .tk-feature-copy .tk-sub h3 {
  font-size: 20px;
  }

  .tk-feature-copy .tk-sub p {
  font-size: 14px;
  }

  .tk-feature-copy .tk-btn-primary {
  width: 100%;
  min-width: 0;
  margin-top: 0;
  }

  .tk-service-image-wrap {
  order: -1;
  height: auto;
  margin: 0 auto 25px;
  padding: 7px;
  border-radius: 20px;
  }

  .tk-service-image {
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  }

  .tk-trust-card {
  padding: 22px;
  border-radius: 20px;
  }

  .tk-trust-card .row {
  display: block;
  }

  .tk-trust-card .col-md-6 {
  float: none;
  width: 100%;
  }

  .tk-trust-card h2 {
  font-size: 30px;
  }

  .tk-trust-card p {
  font-size: 14px;
  }

  .tk-hubs a {
  width: 100%;
  margin-right: 0;
  text-align: center;
  }

  .tk-profile-visual {
  min-height: 350px;
  margin-top: 26px;
  }

  .tk-more-card {
  min-height: 74px;
  padding: 16px;
  }

  .tk-dashboard {
  margin-top: 27px;
  padding: 18px;
  border-radius: 20px;
  }

  .tk-metric {
  min-height: 90px;
  padding: 14px;
  }

  .tk-metric strong {
  font-size: 19px;
  }

  .tk-chart {
  height: 125px;
  gap: 6px;
  padding: 18px 12px 12px;
  }

  .tk-reviews-shell {
  padding: 11px;
  border-radius: 20px;
  }

  .tk-review-card {
  min-height: 0;
  margin-bottom: 14px;
  padding: 21px;
  border-radius: 18px;
  }

  .tk-review-controls {
  gap: 14px;
  }

  .tk-review-arrow {
  width: 46px;
  height: 46px;
  }

  .tk-engine-grid {
  grid-template-columns: 1fr;
  }

  .tk-faq .panel-title a {
  padding: 16px 42px 16px 16px;
  font-size: 13px;
  line-height: 1.45;
  }

  .tk-faq .panel-title a::after {
  right: 15px;
  }

  .tk-faq .panel-body {
  padding: 0 16px 17px;
  font-size: 12px;
  }

  .tk-cta-card {
  padding: 30px 22px;
  border-radius: 20px;
  text-align: center;
  }

  .tk-cta-card h2 {
  font-size: 29px;
  }

  .tk-cta-card p {
  font-size: 14px;
  }

  .tk-nav {
  min-height: 58px;
  }

  .tk-nav .navbar-brand {
  font-size: 19px;
  height: 58px;
  }

  .tk-nav .navbar-toggle {
  margin-top: 12px;
  }

  .tk-nav .navbar-nav > li > a {
  font-size: 13px;
  padding: 11px 15px;
  }

  .tk-nav .dropdown-menu {
  min-width: 0;
  margin: 0 12px 8px;
  padding: 7px;
  border: 1px solid rgba(60, 7, 83, 0.08);
  border-radius: 12px;
  background: #faf8fc;
  box-shadow: none;
  }

  .tk-nav-cta {
  margin: 8px 15px !important;
  text-align: center;
  }

  .pp-topbar-title {
  font-size: 13px;
  }

  .tk-footer {
  padding: 42px 0 22px;
  text-align: center;
  padding-top: 46px;
  }

  .tk-footer-top {
  padding-bottom: 18px;
  }

  .tk-footer-intro {
  max-width: none;
  margin-right: auto !important;
  margin-left: auto !important;
  }

  .tk-footer-badges {
  justify-content: center;
  }

  .tk-footer-bottom {
  display: block;
  text-align: center;
  }

  .tk-footer-bottom-left {
  margin-bottom: 7px;
  }

  .tk-vibe-section::before, .tk-vibe-feature::before {
  width: 220px;
  height: 220px;
  opacity: 0.7;
  }

  .tk-login-card {
  padding: 21px;
  }

  .tk-login-card .tk-btn-primary {
  width: 100%;
  min-width: 0;
  }

  .tk-login-meta {
  align-items: flex-start;
  }

  .tk-heading-vibe::after {
  margin-top: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pp-sidebar, .pp-sidebar-nav li a {
  transition: none !important;
  }

  html {
  scroll-behavior: auto;
  }

  .tk-page *, .tk-page *::before, .tk-page *::after {
  transition: none !important;
  animation: none !important;
  }

  .tk-service-card, .tk-review-card, .tk-service-image-wrap, .tk-service-icon, .tk-step-num, .tk-why-icon {
  transition: none !important;
  }

  .tk-vibe-feature:hover .tk-service-image-wrap, .tk-review-card:hover, .tk-step-card:hover .tk-step-num, .tk-why-card:hover .tk-why-icon {
  transform: none !important;
  }
}

body.pp-authenticated .pp-content {
  position: relative;
  min-height: calc(100vh - var(--pp-topbar-height));
  background: radial-gradient(
      circle at 94% 2%,
      rgba(145, 10, 103, 0.045),
      transparent 25%
    ),
    radial-gradient(
      circle at 18% 98%,
      rgba(60, 7, 83, 0.025),
      transparent 25%
    ),
    #f8f8fb;
}

body.pp-authenticated .pp-content > .container, body.pp-authenticated .pp-content > .container-fluid {
  position: relative;
  z-index: 1;
}

body.pp-authenticated .well, body.pp-authenticated .panel, body.pp-authenticated .card {
  border: 1px solid rgba(60, 7, 83, 0.10);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(60, 7, 83, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

body.pp-authenticated .well {
  padding: 24px;
}

body.pp-authenticated .panel {
  overflow: hidden;
}

body.pp-authenticated .panel-heading {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(60, 7, 83, 0.08);
  background: linear-gradient(
      180deg,
      #ffffff 0%,
      #fcfaff 100%
    );
  color: var(--pp-ink);
}

body.pp-authenticated .panel-title {
  color: var(--pp-ink);
  font-size: 15px;
  font-weight: 800;
}

body.pp-authenticated .panel-body {
  padding: 20px;
}

body.pp-authenticated .panel-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(60, 7, 83, 0.08);
  background: #fcfbfd;
}

body.pp-authenticated a.well, body.pp-authenticated .dashboard-stat, body.pp-authenticated .stats-card {
  transition: transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

body.pp-authenticated a.well:hover, body.pp-authenticated .dashboard-stat:hover, body.pp-authenticated .stats-card:hover {
  transform: translateY(-2px);
  border-color: rgba(145, 10, 103, 0.18);
  box-shadow: 0 18px 42px rgba(60, 7, 83, 0.085);
}

body.pp-authenticated .pp-content h1, body.pp-authenticated .pp-content h2, body.pp-authenticated .pp-content h3 {
  color: var(--pp-ink);
  letter-spacing: -0.025em;
}

body.pp-authenticated .pp-content h1 {
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 28px;
  font-weight: 850;
}

body.pp-authenticated .pp-content h2 {
  font-size: 22px;
  font-weight: 820;
}

body.pp-authenticated .pp-content h3 {
  font-size: 17px;
  font-weight: 800;
}

body.pp-authenticated .page-title, body.pp-authenticated .page-header {
  border-color: rgba(60, 7, 83, 0.10);
}

body.pp-authenticated .form-group, body.pp-guest .pp-guest-main > .container .form-group {
  margin-bottom: 18px;
}

body.pp-authenticated .control-label, body.pp-guest .pp-guest-main > .container .control-label {
  margin-bottom: 7px;
  color: #3d4048;
  font-size: 12px;
  font-weight: 800;
}

body.pp-authenticated .form-control, body.pp-guest .pp-guest-main > .container .form-control {
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid #dedee5;
  border-radius: 11px;
  background: #fff;
  color: #25272d;
  box-shadow: none;
  font-size: 13px;
  transition: border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

body.pp-authenticated textarea.form-control, body.pp-guest .pp-guest-main > .container textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

body.pp-authenticated select.form-control, body.pp-guest .pp-guest-main > .container select.form-control {
  cursor: pointer;
}

body.pp-authenticated .form-control:focus, body.pp-guest .pp-guest-main > .container .form-control:focus {
  border-color: rgba(145, 10, 103, 0.62);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(145, 10, 103, 0.07);
}

body.pp-authenticated .form-control[disabled], body.pp-authenticated .form-control[readonly], body.pp-guest .pp-guest-main > .container .form-control[disabled], body.pp-guest .pp-guest-main > .container .form-control[readonly] {
  background: #f6f6f9;
  color: #898b93;
}

body.pp-authenticated .input-group-addon, body.pp-guest .pp-guest-main > .container .input-group-addon {
  border-color: #dedee5;
  background: #faf9fc;
  color: var(--pp-plum);
  font-size: 12px;
  font-weight: 800;
}

body.pp-authenticated .input-group .form-control:first-child, body.pp-guest .pp-guest-main > .container .input-group .form-control:first-child {
  border-radius: 11px 0 0 11px;
}

body.pp-authenticated .input-group .form-control:last-child, body.pp-guest .pp-guest-main > .container .input-group .form-control:last-child {
  border-radius: 0 11px 11px 0;
}

body.pp-authenticated .checkbox label, body.pp-authenticated .radio label, body.pp-guest .pp-guest-main > .container .checkbox label, body.pp-guest .pp-guest-main > .container .radio label {
  color: #5f626b;
  font-size: 12px;
  font-weight: 650;
}

body.pp-authenticated .btn, body.pp-guest .pp-guest-main > .container .btn {
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

body.pp-authenticated .btn-primary, body.pp-guest .pp-guest-main > .container .btn-primary {
  border-color: transparent;
  background: linear-gradient(
      90deg,
      var(--pp-purple),
      var(--pp-plum),
      var(--pp-magenta)
    );
  color: #fff;
  box-shadow: 0 10px 24px rgba(114, 4, 85, 0.18);
}

body.pp-authenticated .btn-primary:hover, body.pp-authenticated .btn-primary:focus, body.pp-guest .pp-guest-main > .container .btn-primary:hover, body.pp-guest .pp-guest-main > .container .btn-primary:focus {
  transform: translateY(-1px);
  border-color: transparent;
  background: linear-gradient(
      90deg,
      var(--pp-navy),
      var(--pp-purple),
      var(--pp-plum)
    );
  color: #fff;
  box-shadow: 0 14px 28px rgba(114, 4, 85, 0.24);
}

body.pp-authenticated .btn-default, body.pp-guest .pp-guest-main > .container .btn-default {
  border-color: rgba(60, 7, 83, 0.14);
  background: #fff;
  color: #555861;
}

body.pp-authenticated .btn-default:hover, body.pp-authenticated .btn-default:focus, body.pp-guest .pp-guest-main > .container .btn-default:hover, body.pp-guest .pp-guest-main > .container .btn-default:focus {
  border-color: rgba(145, 10, 103, 0.28);
  background: #fbf8fc;
  color: var(--pp-plum);
}

body.pp-authenticated .btn-success {
  border-color: #188a62;
  background: #1d9f71;
}

body.pp-authenticated .btn-danger {
  border-color: #c7434b;
  background: #d64e57;
}

body.pp-authenticated .btn-warning {
  border-color: #d99a2a;
  background: #e5a331;
  color: #fff;
}

body.pp-authenticated .btn:hover, body.pp-guest .pp-guest-main > .container .btn:hover {
  transform: translateY(-1px);
}

body.pp-authenticated .services-list, body.pp-authenticated .services-table, body.pp-authenticated .table-responsive {
  border-radius: 16px;
}

body.pp-authenticated .table-responsive {
  overflow-x: auto;
  border: 1px solid rgba(60, 7, 83, 0.09);
  background: #fff;
  box-shadow: 0 10px 28px rgba(60, 7, 83, 0.045);
}

body.pp-authenticated .table {
  margin-bottom: 0;
  background: #fff;
}

body.pp-authenticated .table > thead > tr > th {
  padding: 14px 13px;
  border-bottom: 1px solid rgba(60, 7, 83, 0.10);
  background: linear-gradient(
      180deg,
      #fcfaff 0%,
      #f8f5fa 100%
    );
  color: #464952;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  vertical-align: middle;
}

body.pp-authenticated .table > tbody > tr > td {
  padding: 14px 13px;
  border-top: 1px solid #f0edf2;
  color: #62656e;
  font-size: 12px;
  line-height: 1.55;
  vertical-align: middle;
}

body.pp-authenticated .table > tbody > tr:hover > td {
  background: #fcf9fd;
}

body.pp-authenticated .table-striped > tbody > tr:nth-of-type(odd) {
  background: #fdfcfe;
}

body.pp-authenticated .service-category, body.pp-authenticated .services-category, body.pp-authenticated .category-title {
  background: linear-gradient(
      90deg,
      rgba(60, 7, 83, 0.055),
      rgba(145, 10, 103, 0.03)
    );
  color: var(--pp-plum);
  font-weight: 850;
}

body.pp-authenticated .modal-content {
  overflow: hidden;
  border: 1px solid rgba(60, 7, 83, 0.10);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(3, 6, 55, 0.20);
}

body.pp-authenticated .modal-header {
  padding: 17px 20px;
  border-bottom: 1px solid rgba(60, 7, 83, 0.09);
  background: #fcfaff;
}

body.pp-authenticated .modal-title {
  color: #292c32;
  font-size: 16px;
  font-weight: 850;
}

body.pp-authenticated .modal-body {
  padding: 21px;
  color: #61646c;
  font-size: 13px;
  line-height: 1.7;
}

body.pp-authenticated .modal-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(60, 7, 83, 0.09);
  background: #fcfbfd;
}

body.pp-authenticated .badge, body.pp-authenticated .label {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

body.pp-authenticated .label-default {
  background: #eeedf2;
  color: #636670;
}

body.pp-authenticated .label-primary, body.pp-authenticated .badge-primary {
  background: rgba(114, 4, 85, 0.10);
  color: var(--pp-plum);
}

body.pp-authenticated .label-success, body.pp-authenticated .badge-success {
  background: #e6f8f1;
  color: #147b5a;
}

body.pp-authenticated .label-warning, body.pp-authenticated .badge-warning {
  background: #fff5dd;
  color: #9d6c11;
}

body.pp-authenticated .label-danger, body.pp-authenticated .badge-danger {
  background: #ffeaec;
  color: #b23842;
}

body.pp-authenticated .label-info, body.pp-authenticated .badge-info {
  background: #eaf3ff;
  color: #316a9d;
}

body.pp-authenticated .status-pending {
  color: #a16b0d;
}

body.pp-authenticated .status-inprogress, body.pp-authenticated .status-processing {
  color: #3d67a5;
}

body.pp-authenticated .status-completed {
  color: #16825e;
}

body.pp-authenticated .status-partial {
  color: #7652a1;
}

body.pp-authenticated .status-canceled, body.pp-authenticated .status-cancelled {
  color: #be3d48;
}

body.pp-authenticated .alert, body.pp-guest .pp-guest-main > .container .alert {
  padding: 13px 16px;
  border-width: 1px;
  border-radius: 12px;
  box-shadow: none;
  font-size: 12px;
  line-height: 1.55;
}

body.pp-authenticated .alert-success, body.pp-guest .pp-guest-main > .container .alert-success {
  border-color: #c9eadf;
  background: #effbf7;
  color: #236d57;
}

body.pp-authenticated .alert-danger, body.pp-guest .pp-guest-main > .container .alert-danger {
  border-color: #f0c9ce;
  background: #fff1f3;
  color: #a63c45;
}

body.pp-authenticated .alert-warning, body.pp-guest .pp-guest-main > .container .alert-warning {
  border-color: #f2dfb3;
  background: #fff9e9;
  color: #8d671a;
}

body.pp-authenticated .alert-info, body.pp-guest .pp-guest-main > .container .alert-info {
  border-color: #cfe2f4;
  background: #f1f7fd;
  color: #38698e;
}

body.pp-authenticated .pagination {
  margin: 22px 0 0;
}

body.pp-authenticated .pagination > li > a, body.pp-authenticated .pagination > li > span {
  min-width: 38px;
  margin: 0 3px;
  padding: 9px 11px;
  border: 1px solid rgba(60, 7, 83, 0.11);
  border-radius: 9px !important;
  background: #fff;
  color: #666972;
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

body.pp-authenticated .pagination > .active > a, body.pp-authenticated .pagination > .active > a:hover, body.pp-authenticated .pagination > .active > a:focus, body.pp-authenticated .pagination > .active > span {
  border-color: transparent;
  background: linear-gradient(
    135deg,
    var(--pp-purple),
    var(--pp-magenta)
  );
  color: #fff;
}

body.pp-authenticated .nav-tabs {
  border-bottom: 1px solid rgba(60, 7, 83, 0.10);
}

body.pp-authenticated .nav-tabs > li > a {
  margin-right: 6px;
  padding: 11px 15px;
  border: 0;
  border-radius: 9px 9px 0 0;
  color: #747780;
  font-size: 12px;
  font-weight: 750;
}

body.pp-authenticated .nav-tabs > li > a:hover {
  border: 0;
  background: #faf6fb;
  color: var(--pp-plum);
}

body.pp-authenticated .nav-tabs > li.active > a, body.pp-authenticated .nav-tabs > li.active > a:hover, body.pp-authenticated .nav-tabs > li.active > a:focus {
  border: 0;
  border-bottom: 2px solid var(--pp-magenta);
  background: transparent;
  color: var(--pp-plum);
}

body.pp-authenticated .pp-content .dropdown-menu {
  padding: 8px;
  border: 1px solid rgba(60, 7, 83, 0.10);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(60, 7, 83, 0.12);
}

body.pp-authenticated .pp-content .dropdown-menu > li > a {
  padding: 9px 11px;
  border-radius: 8px;
  color: #5f626b;
  font-size: 12px;
}

body.pp-authenticated .pp-content .dropdown-menu > li > a:hover, body.pp-authenticated .pp-content .dropdown-menu > li > a:focus {
  background: #faf6fb;
  color: var(--pp-plum);
}

body.pp-guest .pp-guest-main > .container {
  position: relative;
}

body.pp-guest .pp-guest-main > .container > .row {
  position: relative;
}

body.pp-guest .pp-guest-main > .container .well {
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(60, 7, 83, 0.11);
  border-radius: 20px;
  background: radial-gradient(
      circle at 100% 0,
      rgba(145, 10, 103, 0.055),
      transparent 27%
    ),
    #fff;
  box-shadow: 0 22px 60px rgba(60, 7, 83, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

body.pp-guest .pp-guest-main > .container .well h1, body.pp-guest .pp-guest-main > .container .well h2, body.pp-guest .pp-guest-main > .container .well h3 {
  color: #202229;
  font-weight: 850;
  letter-spacing: -0.025em;
}

body.pp-guest .pp-guest-main > .container .well > form {
  position: relative;
  z-index: 1;
}

body.pp-guest .pp-guest-main > .container {
  padding-top: 46px;
  padding-bottom: 60px;
}

body.pp-guest .pp-guest-main > .container .help-block {
  margin-top: 7px;
  color: #91939b;
  font-size: 10px;
  line-height: 1.55;
}

body.pp-guest .pp-guest-main > .container form a {
  color: var(--pp-plum);
  font-weight: 750;
}

body.pp-guest .pp-guest-main > .container form a:hover {
  color: var(--pp-magenta);
}

body.pp-authenticated pre, body.pp-authenticated code {
  border-radius: 9px;
  font-family: "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
}

body.pp-authenticated pre {
  padding: 17px;
  border: 1px solid rgba(60, 7, 83, 0.10);
  background: #080a2c;
  color: #e9e9f3;
  font-size: 11px;
  line-height: 1.65;
}

body.pp-authenticated code {
  padding: 2px 5px;
  background: #f5eef4;
  color: var(--pp-plum);
}

body.pp-authenticated .ticket-message, body.pp-authenticated .message, body.pp-authenticated .conversation-message {
  margin-bottom: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(60, 7, 83, 0.09);
  border-radius: 14px;
  background: #fff;
  color: #5f626a;
  box-shadow: 0 8px 22px rgba(60, 7, 83, 0.035);
}

body.pp-authenticated .ticket-message.staff, body.pp-authenticated .message.staff {
  background: #fbf7fc;
  border-color: rgba(145, 10, 103, 0.12);
}

body.pp-authenticated .empty-state, body.pp-authenticated .no-data, body.pp-authenticated .no-results {
  padding: 46px 24px;
  border: 1px dashed rgba(60, 7, 83, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: #898c94;
  text-align: center;
}

body.pp-authenticated .pp-sidebar {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.20)
    transparent;
}

body.pp-authenticated .pp-sidebar::-webkit-scrollbar {
  width: 6px;
}

body.pp-authenticated .pp-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

body.pp-authenticated .pp-sidebar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 767px) {
  body.pp-authenticated .pp-content {
  padding: 18px 12px 28px;
  }

  body.pp-authenticated .well {
  padding: 18px;
  border-radius: 14px;
  }

  body.pp-authenticated .panel {
  border-radius: 14px;
  }

  body.pp-authenticated .pp-content h1 {
  margin-bottom: 18px;
  font-size: 23px;
  }

  body.pp-authenticated .form-control, body.pp-guest .pp-guest-main > .container .form-control {
  min-height: 45px;
  }

  body.pp-authenticated .btn, body.pp-guest .pp-guest-main > .container .btn {
  min-height: 43px;
  }

  body.pp-authenticated .table-responsive {
  border-radius: 12px;
  }

  body.pp-authenticated .table > thead > tr > th, body.pp-authenticated .table > tbody > tr > td {
  padding: 11px 10px;
  white-space: nowrap;
  }

  body.pp-guest .pp-guest-main > .container {
  padding-top: 28px;
  padding-bottom: 38px;
  }

  body.pp-guest .pp-guest-main > .container .well {
  padding: 21px;
  border-radius: 16px;
  }

  body.pp-authenticated .pagination > li > a, body.pp-authenticated .pagination > li > span {
  min-width: 34px;
  margin: 0 1px;
  padding: 8px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.pp-authenticated .well, body.pp-authenticated .panel, body.pp-authenticated .btn, body.pp-authenticated .form-control, body.pp-guest .pp-guest-main > .container .btn, body.pp-guest .pp-guest-main > .container .form-control {
  transition: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .tk-page .container {
  width: 970px;
  }

  .tk-hero h1 {
  font-size: 47px;
  }

  .tk-hero-visual {
  transform: scale(0.88);
  transform-origin: center;
  }

  .tk-heading h2, .tk-copy h2 {
  font-size: 35px;
  }

  .tk-feature-copy {
  min-height: 400px;
  }

  .tk-feature-copy.left {
  padding-right: 22px;
  }

  .tk-feature-copy.right {
  padding-left: 22px;
  }

  .tk-feature-copy h2 {
  font-size: 35px;
  }

  .tk-service-image-wrap {
  height: 400px;
  }

  .tk-trust-card h2 {
  font-size: 35px;
  }

  .tk-profile-visual {
  min-height: 400px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .tk-section, .tk-feature {
  padding: 62px 0;
  }

  .tk-hero {
  padding: 55px 0;
  }

  .tk-hero-copy {
  text-align: center;
  }

  .tk-hero h1 {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  font-size: 43px;
  }

  .tk-hero p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  }

  .tk-trust-row {
  justify-content: center;
  }

  .tk-hero-visual {
  margin-top: 10px;
  transform: scale(0.84);
  transform-origin: center;
  }

  .tk-heading h2, .tk-copy h2 {
  font-size: 33px;
  }

  #services .row, #why-choose .row, #how-it-works .row, #more-services .row, #regional-hubs .row, .tk-review-slide .row {
  display: flex;
  flex-wrap: wrap;
  }

  .tk-service-card {
  min-height: 350px;
  }

  .tk-feature .row {
  display: block;
  }

  .tk-feature .col-md-6 {
  float: left;
  width: 100%;
  }

  .tk-feature-copy {
  min-height: 0;
  max-width: 720px;
  margin: 30px auto 0;
  padding: 0 !important;
  }

  .tk-feature-copy h2 {
  font-size: 36px;
  }

  .tk-feature-copy .tk-btn-primary {
  margin-top: 0;
  }

  .tk-service-image-wrap {
  max-width: 720px;
  height: 420px;
  margin: 0 auto;
  }

  .tk-trust-card .row {
  display: block;
  }

  .tk-trust-card .col-md-6 {
  float: left;
  width: 100%;
  }

  .tk-profile-visual {
  margin-top: 28px;
  }

  .tk-dashboard {
  margin-top: 28px;
  }

  .tk-engine-grid {
  grid-template-columns: repeat(2, 1fr);
  }

  .tk-review-slide .col-md-4 {
  display: block;
  float: left;
  }

  .tk-review-card {
  min-height: 225px;
  margin-bottom: 18px;
  }
}

@media (max-width: 420px) {
  .tk-page .container {
  padding-right: 14px;
  padding-left: 14px;
  }

  .tk-hero h1 {
  font-size: 31px;
  }

  .tk-heading h2, .tk-copy h2 {
  font-size: 27px;
  }

  .tk-feature-copy h2 {
  font-size: 28px;
  }

  .tk-tool-grid {
  grid-template-columns: 1fr;
  }

  .tk-review-top {
  display: block;
  }

  .tk-stars {
  margin-top: 10px;
  }
}

@media (max-width: 1199px) {
  .tk-nav .navbar-nav > li > a {
  padding-right: 9px;
  padding-left: 9px;
  }

  .tk-nav-cta {
  padding-right: 14px !important;
  padding-left: 14px !important;
  }
}

@media (max-width: 991px) {
  body.pp-sidebar-open {
  overflow: hidden;
  }

  .pp-sidebar {
  transform: translateX(-100%);
  transition: transform 0.22s ease;
  }

  .pp-sidebar.open {
  transform: translateX(0);
  box-shadow: 10px 0 38px rgba(3, 6, 55, 0.24);
  }

  .pp-mobile-toggle {
  display: inline-block;
  }

  .pp-main, .pp-footer {
  margin-left: 0;
  }

  .pp-rtl .pp-sidebar {
  transform: translateX(100%);
  }

  .pp-rtl .pp-sidebar.open {
  transform: translateX(0);
  }

  .pp-rtl .pp-topbar {
  right: 0;
  left: 0;
  }

  .pp-rtl .pp-main, .pp-rtl .pp-footer {
  margin-right: 0;
  }

  .pp-topbar {
  left: 0;
  }

  .pp-main {
  margin-left: 0;
  }

  .pp-topbar-title {
  display: inline-block;
  }
}

@media (max-width: 767px) {
  .pp-topbar .container-fluid {
  padding-right: 14px;
  padding-left: 14px;
  }

  .pp-topbar .navbar-right {
  float: right !important;
  margin: 0;
  }

  .pp-topbar .navbar-right > li {
  float: left;
  }

  .pp-topbar .navbar-right > li > a {
  padding-right: 8px;
  padding-left: 8px;
  font-size: 12px;
  }

  .pp-content {
  padding: 20px 14px 30px;
  }

  .pp-footer {
  padding: 16px 14px;
  text-align: center;
  }

  .pp-footer-inner {
  display: block;
  }

  .pp-footer-links {
  margin-top: 8px;
  }

  .pp-footer-links a {
  margin: 0 7px;
  }

  .tk-brandmark {
  width: 32px;
  height: 32px;
  }

  .tk-nav .navbar-nav {
  margin-top: 8px;
  margin-bottom: 12px;
  }

  .tk-footer .row > div {
  margin-bottom: 28px;
  }

  .tk-page {
  overflow-x: hidden;
  }

  .tk-page .container {
  padding-right: 18px;
  padding-left: 18px;
  }

  .tk-section, .tk-feature {
  padding: 50px 0;
  }

  .tk-eyebrow {
  padding: 7px 11px;
  font-size: 9px;
  letter-spacing: 0.12em;
  }

  .tk-heading {
  margin-bottom: 28px;
  }

  .tk-heading h2, .tk-copy h2 {
  margin-top: 12px;
  font-size: 29px;
  line-height: 1.16;
  }

  .tk-heading p, .tk-copy > p {
  font-size: 14px;
  line-height: 1.7;
  }

  .tk-hero {
  padding: 43px 0 46px;
  }

  .tk-hero-copy {
  padding-top: 0;
  text-align: center;
  }

  .tk-hero h1 {
  max-width: 520px;
  margin: 17px auto 18px;
  font-size: 35px;
  line-height: 1.08;
  }

  .tk-hero p {
  margin-right: auto;
  margin-left: auto;
  font-size: 15px;
  line-height: 1.7;
  }

  .tk-actions {
  margin-top: 23px;
  }

  .tk-btn-primary, .tk-btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 51px;
  margin: 0 0 10px;
  }

  .tk-trust-row {
  justify-content: center;
  line-height: 1.5;
  }

  .tk-hero-visual {
  min-height: 315px;
  margin-top: 15px;
  margin-bottom: -45px;
  transform: scale(0.74);
  transform-origin: center top;
  }

  .tk-analyser-box {
  padding: 20px;
  }

  .tk-input-row {
  display: block;
  }

  .tk-input {
  width: 100%;
  margin-bottom: 10px;
  }

  .tk-tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  }

  .tk-tool-grid a {
  width: 100%;
  padding: 11px 8px;
  text-align: center;
  }

  #services .row, #why-choose .row, #how-it-works .row, #more-services .row, #regional-hubs .row, .tk-review-slide .row {
  display: block;
  }

  #services .col-md-4, #why-choose .col-md-4, #how-it-works .col-md-4, #more-services .col-md-4, #regional-hubs .col-md-3, .tk-review-slide .col-md-4 {
  display: block;
  float: none;
  width: 100%;
  }

  .tk-service-card, .tk-why-card, .tk-step-card, .tk-hub-card {
  min-height: 0;
  margin-bottom: 17px;
  }

  .tk-service-card {
  padding: 23px;
  }

  .tk-service-card h3, .tk-service-card p {
  min-height: 0;
  }

  .tk-card-btn {
  width: 100%;
  }

  .tk-feature .row {
  display: flex;
  flex-direction: column;
  }

  .tk-feature .col-md-6 {
  float: none;
  width: 100%;
  }

  .tk-feature-copy {
  min-height: 0;
  max-width: none;
  margin: 0;
  padding: 0 !important;
  }

  .tk-feature-copy h2 {
  margin: 12px 0 17px;
  font-size: 30px;
  }

  .tk-feature-copy > p {
  font-size: 14px;
  line-height: 1.7;
  }

  .tk-feature-copy .tk-sub {
  margin: 21px 0 22px;
  }

  .tk-feature-copy .tk-sub h3 {
  font-size: 20px;
  }

  .tk-feature-copy .tk-sub p {
  font-size: 14px;
  }

  .tk-feature-copy .tk-btn-primary {
  width: 100%;
  min-width: 0;
  margin-top: 0;
  }

  .tk-service-image-wrap {
  order: -1;
  height: auto;
  margin: 0 auto 25px;
  padding: 7px;
  border-radius: 20px;
  }

  .tk-service-image {
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  }

  .tk-trust-card {
  padding: 22px;
  border-radius: 20px;
  }

  .tk-trust-card .row {
  display: block;
  }

  .tk-trust-card .col-md-6 {
  float: none;
  width: 100%;
  }

  .tk-trust-card h2 {
  font-size: 30px;
  }

  .tk-trust-card p {
  font-size: 14px;
  }

  .tk-hubs a {
  width: 100%;
  margin-right: 0;
  text-align: center;
  }

  .tk-profile-visual {
  min-height: 350px;
  margin-top: 26px;
  }

  .tk-more-card {
  min-height: 74px;
  padding: 16px;
  }

  .tk-dashboard {
  margin-top: 27px;
  padding: 18px;
  border-radius: 20px;
  }

  .tk-metric {
  min-height: 90px;
  padding: 14px;
  }

  .tk-metric strong {
  font-size: 19px;
  }

  .tk-chart {
  height: 125px;
  gap: 6px;
  padding: 18px 12px 12px;
  }

  .tk-reviews-shell {
  padding: 11px;
  border-radius: 20px;
  }

  .tk-review-card {
  min-height: 0;
  margin-bottom: 14px;
  padding: 21px;
  border-radius: 18px;
  }

  .tk-review-controls {
  gap: 14px;
  }

  .tk-review-arrow {
  width: 46px;
  height: 46px;
  }

  .tk-engine-grid {
  grid-template-columns: 1fr;
  }

  .tk-faq .panel-title a {
  padding: 16px 42px 16px 16px;
  font-size: 13px;
  line-height: 1.45;
  }

  .tk-faq .panel-title a::after {
  right: 15px;
  }

  .tk-faq .panel-body {
  padding: 0 16px 17px;
  font-size: 12px;
  }

  .tk-cta-card {
  padding: 30px 22px;
  border-radius: 20px;
  text-align: center;
  }

  .tk-cta-card h2 {
  font-size: 29px;
  }

  .tk-cta-card p {
  font-size: 14px;
  }

  .tk-nav {
  min-height: 58px;
  }

  .tk-nav .navbar-brand {
  font-size: 19px;
  height: 58px;
  }

  .tk-nav .navbar-toggle {
  margin-top: 12px;
  }

  .tk-nav .navbar-nav > li > a {
  font-size: 13px;
  padding: 11px 15px;
  }

  .tk-nav .dropdown-menu {
  min-width: 0;
  margin: 0 12px 8px;
  padding: 7px;
  border: 1px solid rgba(60, 7, 83, 0.08);
  border-radius: 12px;
  background: #faf8fc;
  box-shadow: none;
  }

  .tk-nav-cta {
  margin: 8px 15px !important;
  text-align: center;
  }

  .pp-topbar-title {
  font-size: 13px;
  }

  .tk-footer {
  padding: 42px 0 22px;
  text-align: center;
  padding-top: 46px;
  }

  .tk-footer-top {
  padding-bottom: 18px;
  }

  .tk-footer-intro {
  max-width: none;
  margin-right: auto !important;
  margin-left: auto !important;
  }

  .tk-footer-badges {
  justify-content: center;
  }

  .tk-footer-bottom {
  display: block;
  text-align: center;
  }

  .tk-footer-bottom-left {
  margin-bottom: 7px;
  }

  .tk-vibe-section::before, .tk-vibe-feature::before {
  width: 220px;
  height: 220px;
  opacity: 0.7;
  }

  .tk-login-card {
  padding: 21px;
  }

  .tk-login-card .tk-btn-primary {
  width: 100%;
  min-width: 0;
  }

  .tk-login-meta {
  align-items: flex-start;
  }

  .tk-heading-vibe::after {
  margin-top: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pp-sidebar, .pp-sidebar-nav li a {
  transition: none !important;
  }

  html {
  scroll-behavior: auto;
  }

  .tk-page *, .tk-page *::before, .tk-page *::after {
  transition: none !important;
  animation: none !important;
  }

  .tk-service-card, .tk-review-card, .tk-service-image-wrap, .tk-service-icon, .tk-step-num, .tk-why-icon {
  transition: none !important;
  }

  .tk-vibe-feature:hover .tk-service-image-wrap, .tk-review-card:hover, .tk-step-card:hover .tk-step-num, .tk-why-card:hover .tk-why-icon {
  transform: none !important;
  }
}

@media (max-width: 767px) {
  body.pp-authenticated .pp-content {
  padding: 18px 12px 28px;
  }

  body.pp-authenticated .well {
  padding: 18px;
  border-radius: 14px;
  }

  body.pp-authenticated .panel {
  border-radius: 14px;
  }

  body.pp-authenticated .pp-content h1 {
  margin-bottom: 18px;
  font-size: 23px;
  }

  body.pp-authenticated .form-control, body.pp-guest .pp-guest-main > .container .form-control {
  min-height: 45px;
  }

  body.pp-authenticated .btn, body.pp-guest .pp-guest-main > .container .btn {
  min-height: 43px;
  }

  body.pp-authenticated .table-responsive {
  border-radius: 12px;
  }

  body.pp-authenticated .table > thead > tr > th, body.pp-authenticated .table > tbody > tr > td {
  padding: 11px 10px;
  white-space: nowrap;
  }

  body.pp-guest .pp-guest-main > .container {
  padding-top: 28px;
  padding-bottom: 38px;
  }

  body.pp-guest .pp-guest-main > .container .well {
  padding: 21px;
  border-radius: 16px;
  }

  body.pp-authenticated .pagination > li > a, body.pp-authenticated .pagination > li > span {
  min-width: 34px;
  margin: 0 1px;
  padding: 8px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.pp-authenticated .well, body.pp-authenticated .panel, body.pp-authenticated .btn, body.pp-authenticated .form-control, body.pp-guest .pp-guest-main > .container .btn, body.pp-guest .pp-guest-main > .container .form-control {
  transition: none !important;
  }
}

body.pp-authenticated {
  background: radial-gradient(circle at 92% 4%, rgba(145,10,103,.05), transparent 24%),
    radial-gradient(circle at 12% 96%, rgba(60,7,83,.035), transparent 24%),
    #f7f8fb;
}

body.pp-authenticated .pp-main {
  background: transparent;
}

body.pp-authenticated .pp-content {
  padding-top: 26px;
}

body.pp-authenticated .page-header {
  margin: 0 0 24px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(60,7,83,.09);
}

body.pp-authenticated .page-header h1, body.pp-authenticated .page-header h2 {
  margin: 0;
  color: #1e2027;
  font-weight: 900;
  letter-spacing: -.035em;
}

body.pp-authenticated .well, body.pp-authenticated .panel, body.pp-authenticated .dashboard-stat, body.pp-authenticated .stats-card, body.pp-authenticated .account-stat, body.pp-authenticated .balance-card {
  position: relative;
  overflow: hidden;
}

body.pp-authenticated .dashboard-stat::before, body.pp-authenticated .stats-card::before, body.pp-authenticated .account-stat::before, body.pp-authenticated .balance-card::before {
  content: "";
  position: absolute;
  top: -58px;
  right: -58px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(145,10,103,.045);
  pointer-events: none;
}

body.pp-authenticated .dashboard-stat, body.pp-authenticated .stats-card, body.pp-authenticated .account-stat, body.pp-authenticated .balance-card {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(60,7,83,.10);
  border-radius: 18px;
  background: linear-gradient(180deg,#fff 0%,#fdfbff 100%);
  box-shadow: 0 12px 30px rgba(60,7,83,.055);
}

body.pp-authenticated .dashboard-stat strong, body.pp-authenticated .stats-card strong, body.pp-authenticated .account-stat strong, body.pp-authenticated .balance-card strong {
  color: #1e2027;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.03em;
}

body.pp-authenticated .dashboard-stat small, body.pp-authenticated .stats-card small, body.pp-authenticated .account-stat small, body.pp-authenticated .balance-card small {
  color: #8b8e97;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body.pp-authenticated form[action*="neworder"] .well, body.pp-authenticated .neworder .well, body.pp-authenticated .new-order .well {
  max-width: 100%;
}

body.pp-authenticated .form-group label {
  color: #454851;
}

body.pp-authenticated .form-control {
  border-color: #dedfe5;
  background: #fff;
}

body.pp-authenticated .form-control:hover {
  border-color: rgba(145,10,103,.24);
}

body.pp-authenticated .form-control:focus {
  border-color: rgba(145,10,103,.60);
  box-shadow: 0 0 0 3px rgba(145,10,103,.07);
}

body.pp-authenticated .help-block {
  color: #9698a0;
  font-size: 10px;
  line-height: 1.55;
}

body.pp-authenticated .services-category, body.pp-authenticated .service-category, body.pp-authenticated .category-title {
  border-left: 3px solid var(--pp-magenta);
  background: linear-gradient(90deg, rgba(145,10,103,.065), rgba(60,7,83,.02));
}

body.pp-authenticated .table > tbody > tr {
  transition: background .15s ease;
}

body.pp-authenticated .table > tbody > tr:hover {
  background: #fcf8fd;
}

body.pp-authenticated .table td .btn {
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 8px;
}

body.pp-authenticated .nav-pills > li > a {
  margin-right: 5px;
  padding: 9px 13px;
  border-radius: 10px;
  color: #686b74;
  font-size: 11px;
  font-weight: 800;
}

body.pp-authenticated .nav-pills > li.active > a, body.pp-authenticated .nav-pills > li.active > a:hover, body.pp-authenticated .nav-pills > li.active > a:focus {
  background: linear-gradient(90deg,var(--pp-purple),var(--pp-plum),var(--pp-magenta));
  color: #fff;
  box-shadow: 0 9px 20px rgba(114,4,85,.17);
}

body.pp-authenticated .nav-pills > li > a:hover {
  background: #faf6fb;
  color: var(--pp-plum);
}

body.pp-authenticated .payment-method, body.pp-authenticated .payment-card, body.pp-authenticated .gateway-card {
  padding: 18px;
  border: 1px solid rgba(60,7,83,.10);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(60,7,83,.045);
  transition: transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

body.pp-authenticated .payment-method:hover, body.pp-authenticated .payment-card:hover, body.pp-authenticated .gateway-card:hover {
  transform: translateY(-2px);
  border-color: rgba(145,10,103,.22);
  box-shadow: 0 16px 36px rgba(60,7,83,.08);
}

body.pp-authenticated .ticket-message, body.pp-authenticated .conversation-message, body.pp-authenticated .message {
  border-radius: 15px;
}

body.pp-authenticated .ticket-message .date, body.pp-authenticated .conversation-message .date, body.pp-authenticated .message .date {
  color: #9b9da4;
  font-size: 10px;
}

body.pp-authenticated .account-settings .well, body.pp-authenticated .settings .well, body.pp-authenticated .profile-settings .well {
  max-width: 820px;
}

body.pp-authenticated hr {
  border-top-color: rgba(60,7,83,.09);
}

body.pp-authenticated pre {
  position: relative;
  overflow: auto;
  border-radius: 14px;
  background: radial-gradient(circle at 100% 0, rgba(145,10,103,.18), transparent 24%),
    #07092b;
  box-shadow: 0 18px 45px rgba(3,6,55,.15);
}

body.pp-authenticated .modal-backdrop.in {
  opacity: .42;
}

body.pp-authenticated .modal-dialog {
  margin-top: 7vh;
}

body.pp-authenticated .modal-content {
  border-radius: 20px;
}

body.pp-authenticated .pp-topbar {
  border-bottom-color: rgba(60,7,83,.08);
}

body.pp-authenticated .pp-topbar-title {
  position: relative;
  padding-left: 12px;
}

body.pp-authenticated .pp-topbar-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg,var(--pp-plum),var(--pp-magenta));
}

body.pp-authenticated .pp-sidebar-nav li > a {
  position: relative;
}

body.pp-authenticated .pp-sidebar-nav li > a::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: transparent;
  transition: background .18s ease;
}

body.pp-authenticated .pp-sidebar-nav li.active > a::after {
  background: #d77db9;
  box-shadow: 0 0 12px rgba(215,125,185,.65);
}

body.pp-authenticated .pp-private-footer {
  border-top-color: rgba(60,7,83,.08);
  background: rgba(255,255,255,.96);
}

@media (max-width: 767px) {
  body.pp-authenticated .pp-content {
  padding: 16px 12px 26px;
  }

  body.pp-authenticated .page-header {
  margin-bottom: 18px;
  }

  body.pp-authenticated .dashboard-stat, body.pp-authenticated .stats-card, body.pp-authenticated .account-stat, body.pp-authenticated .balance-card {
  min-height: 102px;
  margin-bottom: 14px;
  padding: 17px;
  border-radius: 14px;
  }

  body.pp-authenticated .dashboard-stat strong, body.pp-authenticated .stats-card strong, body.pp-authenticated .account-stat strong, body.pp-authenticated .balance-card strong {
  font-size: 21px;
  }

  body.pp-authenticated .nav-pills > li {
  margin-bottom: 5px;
  }

  body.pp-authenticated .modal-dialog {
  margin: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.pp-authenticated .dashboard-stat, body.pp-authenticated .stats-card, body.pp-authenticated .account-stat, body.pp-authenticated .balance-card, body.pp-authenticated .payment-method, body.pp-authenticated .payment-card, body.pp-authenticated .gateway-card {
  transition: none !important;
  }
}

/* =========================================================
   PRIVATE NAVIGATION VIBE - FINAL OVERRIDE
   Bootstrap 3.3.7 + PerfectPanel
   ========================================================= */

/* ---------- Shared sizes ---------- */

:root {
  --pp-sidebar-width: 264px;
  --pp-topbar-height: 74px;
}


/* ---------- Sidebar ---------- */

body.pp-authenticated .pp-sidebar {
  width: var(--pp-sidebar-width);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(
      circle at 22% 0,
      rgba(145, 10, 103, 0.40),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 72%,
      rgba(114, 4, 85, 0.24),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #030637 0%,
      #10042e 48%,
      #2d0644 100%
    );
  box-shadow:
    14px 0 40px rgba(3, 6, 55, 0.13),
    inset -1px 0 rgba(255, 255, 255, 0.03);
}

body.pp-authenticated .pp-sidebar-brand {
  position: sticky;
  top: 0;
  z-index: 3;
  height: var(--pp-topbar-height);
  padding: 0 18px;
  background: rgba(3, 6, 55, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

body.pp-authenticated .pp-sidebar-brand-link {
  min-width: 0;
  flex: 1;
}

body.pp-authenticated .pp-sidebar-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      rgba(145, 10, 103, 0.96),
      rgba(114, 4, 85, 0.82)
    );
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

body.pp-authenticated .pp-sidebar-brand-name {
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.pp-authenticated .pp-sidebar-close {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin-left: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}


/* ---------- User summary ---------- */

body.pp-authenticated .pp-sidebar-user {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 18px 13px 4px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.035)
    );
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

body.pp-authenticated .pp-sidebar-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background:
    linear-gradient(
      135deg,
      rgba(145, 10, 103, 0.78),
      rgba(114, 4, 85, 0.52)
    );
  color: #fff;
}

body.pp-authenticated .pp-sidebar-user-copy {
  min-width: 0;
}

body.pp-authenticated .pp-sidebar-user-copy strong,
body.pp-authenticated .pp-sidebar-user-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.pp-authenticated .pp-sidebar-user-copy strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 800;
}

body.pp-authenticated .pp-sidebar-user-copy span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 650;
}


/* ---------- Sidebar menu ---------- */

body.pp-authenticated .pp-sidebar-nav {
  padding: 9px 12px 28px;
}

body.pp-authenticated .pp-sidebar-section-title {
  display: flex;
  align-items: center;
  padding: 15px 11px 7px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.pp-authenticated .pp-sidebar-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 10px;
  background: rgba(255, 255, 255, 0.06);
}

body.pp-authenticated .pp-sidebar-menu {
  margin: 0;
  padding: 0;
}

body.pp-authenticated .pp-sidebar-menu > li {
  margin: 4px 0;
}

body.pp-authenticated .pp-sidebar-menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 45px;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 680;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

body.pp-authenticated .pp-sidebar-menu > li > a:hover {
  transform: translateX(2px);
  border-color: rgba(255, 255, 255, 0.055);
  background: rgba(255, 255, 255, 0.065);
  color: #fff;
}

body.pp-authenticated .pp-sidebar-menu > li.active > a {
  border-color: rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(
      90deg,
      rgba(145, 10, 103, 0.38),
      rgba(255, 255, 255, 0.065)
    );
  color: #fff;
  box-shadow:
    inset 3px 0 0 #d979ba,
    0 9px 22px rgba(3, 6, 55, 0.18);
}

body.pp-authenticated .pp-sidebar-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-right: 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.64);
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

body.pp-authenticated .pp-sidebar-menu-icon .navbar-icon {
  width: auto;
  margin: 0;
  font-size: 13px;
}

body.pp-authenticated .pp-sidebar-menu > li:hover .pp-sidebar-menu-icon,
body.pp-authenticated .pp-sidebar-menu > li.active .pp-sidebar-menu-icon {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

body.pp-authenticated .pp-sidebar-menu-label {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.pp-authenticated .pp-sidebar-active-dot {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-radius: 50%;
  background: #e38bc8;
  box-shadow: 0 0 13px rgba(227, 139, 200, 0.70);
}


/* ---------- Topbar ---------- */

body.pp-authenticated .pp-topbar {
  left: var(--pp-sidebar-width);
  min-height: var(--pp-topbar-height);
  border-bottom: 1px solid rgba(60, 7, 83, 0.08);
  background: rgba(255, 255, 255, 0.965);
  box-shadow:
    0 8px 28px rgba(60, 7, 83, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
  backdrop-filter: blur(14px);
}

body.pp-authenticated .pp-topbar .container-fluid {
  min-height: var(--pp-topbar-height);
  padding-right: 21px;
  padding-left: 21px;
}

body.pp-authenticated .pp-topbar-left {
  min-width: 0;
}

body.pp-authenticated .pp-topbar-heading {
  min-width: 0;
  padding-left: 13px;
  border-left: 3px solid var(--pp-magenta);
}

body.pp-authenticated .pp-topbar-eyebrow,
body.pp-authenticated .pp-topbar-title {
  display: block;
}

body.pp-authenticated .pp-topbar-eyebrow {
  margin-bottom: 1px;
  color: #a0a1a8;
  font-size: 8px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.pp-authenticated .pp-topbar-title {
  max-width: 440px;
  overflow: hidden;
  color: #26282f;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* ---------- Topbar actions ---------- */

body.pp-authenticated .pp-topbar-actions {
  display: flex;
  align-items: center;
  margin: 0;
}

body.pp-authenticated .pp-topbar-actions > li {
  float: none;
}

body.pp-authenticated .pp-topbar-actions > li > a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  margin-left: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(60, 7, 83, 0.09);
  border-radius: 12px;
  background: #fff;
  color: #555861;
  box-shadow: 0 6px 18px rgba(60, 7, 83, 0.035);
}

body.pp-authenticated .pp-topbar-actions > li > a:hover,
body.pp-authenticated .pp-topbar-actions > li.open > a,
body.pp-authenticated .pp-topbar-actions > li.open > a:hover,
body.pp-authenticated .pp-topbar-actions > li.open > a:focus {
  border-color: rgba(145, 10, 103, 0.18);
  background: #fcf9fd;
  color: var(--pp-plum);
}

body.pp-authenticated .pp-topbar-action-icon,
body.pp-authenticated .pp-topbar-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

body.pp-authenticated .pp-topbar-action-icon {
  background: rgba(145, 10, 103, 0.075);
  color: var(--pp-magenta);
}

body.pp-authenticated .pp-topbar-avatar {
  background:
    linear-gradient(
      135deg,
      var(--pp-purple),
      var(--pp-magenta)
    );
  color: #fff;
  box-shadow: 0 7px 16px rgba(114, 4, 85, 0.16);
}

body.pp-authenticated .pp-topbar-balance-copy,
body.pp-authenticated .pp-topbar-account-copy {
  min-width: 0;
}

body.pp-authenticated .pp-topbar-balance-copy small,
body.pp-authenticated .pp-topbar-balance-copy strong,
body.pp-authenticated .pp-topbar-account-copy small,
body.pp-authenticated .pp-topbar-account-copy strong {
  display: block;
  line-height: 1.3;
}

body.pp-authenticated .pp-topbar-balance-copy small,
body.pp-authenticated .pp-topbar-account-copy small {
  color: #9a9ca4;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body.pp-authenticated .pp-topbar-balance-copy strong,
body.pp-authenticated .pp-topbar-account-copy strong {
  max-width: 145px;
  overflow: hidden;
  margin-top: 1px;
  color: #34363d;
  font-size: 11px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* ---------- Private dropdowns ---------- */

body.pp-authenticated .pp-topbar .dropdown-menu {
  min-width: 230px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(60, 7, 83, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow:
    0 22px 52px rgba(60, 7, 83, 0.13),
    0 3px 10px rgba(60, 7, 83, 0.035);
}

body.pp-authenticated .pp-topbar .dropdown-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 9px 10px;
  border-radius: 8px;
  color: #5d6069;
  font-size: 11px;
  font-weight: 700;
}

body.pp-authenticated .pp-topbar .dropdown-menu > li > a:hover,
body.pp-authenticated .pp-topbar .dropdown-menu > li.active > a {
  background: #faf5fb;
  color: var(--pp-plum);
}

body.pp-authenticated .pp-dropdown-heading {
  padding: 7px 10px 6px;
  color: #9c7d95;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.pp-authenticated .pp-dropdown-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

body.pp-authenticated .pp-dropdown-user-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background:
    linear-gradient(
      135deg,
      var(--pp-purple),
      var(--pp-magenta)
    );
  color: #fff;
}

body.pp-authenticated .pp-dropdown-user strong,
body.pp-authenticated .pp-dropdown-user small {
  display: block;
}

body.pp-authenticated .pp-dropdown-user strong {
  max-width: 145px;
  overflow: hidden;
  color: #303239;
  font-size: 11px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.pp-authenticated .pp-dropdown-user small {
  margin-top: 2px;
  color: #9698a0;
  font-size: 9px;
}


/* ---------- Main / footer alignment ---------- */

body.pp-authenticated .pp-main {
  margin-left: var(--pp-sidebar-width);
  padding-top: var(--pp-topbar-height);
}

body.pp-authenticated .pp-footer {
  margin-left: var(--pp-sidebar-width);
}


/* ---------- Mobile sidebar backdrop ---------- */

body.pp-authenticated .pp-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1035;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(3, 6, 55, 0.48);
  opacity: 0;
  cursor: default;
  backdrop-filter: blur(2px);
  transition: opacity 0.20s ease;
}

body.pp-authenticated .pp-sidebar-backdrop.open {
  opacity: 1;
}


/* ---------- Tablet / Mobile ---------- */

@media (max-width: 991px) {

  body.pp-authenticated .pp-sidebar {
    z-index: 1045;
    transform: translateX(-103%);
    box-shadow: 18px 0 55px rgba(3, 6, 55, 0.25);
    transition: transform 0.22s ease;
  }

  body.pp-authenticated .pp-sidebar.open {
    transform: translateX(0);
  }

  body.pp-authenticated .pp-sidebar-close {
    display: flex;
  }

  body.pp-authenticated .pp-sidebar-backdrop {
    display: block;
    pointer-events: none;
  }

  body.pp-authenticated .pp-sidebar-backdrop.open {
    pointer-events: auto;
  }

  body.pp-authenticated .pp-topbar {
    left: 0;
  }

  body.pp-authenticated .pp-main,
  body.pp-authenticated .pp-footer {
    margin-left: 0;
  }

  body.pp-authenticated .pp-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    float: none;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    margin: 0 11px 0 0;
    padding: 0;
    border-radius: 10px;
  }

  body.pp-authenticated.pp-rtl .pp-sidebar {
    transform: translateX(103%);
  }

  body.pp-authenticated.pp-rtl .pp-sidebar.open {
    transform: translateX(0);
  }
}


@media (max-width: 767px) {

  body.pp-authenticated .pp-topbar .container-fluid {
    padding-right: 12px;
    padding-left: 12px;
  }

  body.pp-authenticated .pp-topbar-heading {
    max-width: 180px;
    padding-left: 10px;
  }

  body.pp-authenticated .pp-topbar-title {
    font-size: 12px;
  }

  body.pp-authenticated .pp-topbar-actions > li > a {
    min-height: 42px;
    margin-left: 5px;
    padding: 5px 7px;
    border-radius: 10px;
  }

  body.pp-authenticated .pp-topbar-balance-copy {
    display: none;
  }

  body.pp-authenticated .pp-topbar-action-icon,
  body.pp-authenticated .pp-topbar-avatar {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  body.pp-authenticated .pp-topbar-actions .caret {
    margin-left: 0;
  }

  body.pp-authenticated .pp-sidebar {
    width: min(86vw, 286px);
  }
}


/* ---------- RTL ---------- */

body.pp-authenticated.pp-rtl .pp-sidebar {
  right: 0;
  left: auto;
}

body.pp-authenticated.pp-rtl .pp-topbar {
  right: var(--pp-sidebar-width);
  left: 0;
}

body.pp-authenticated.pp-rtl .pp-main,
body.pp-authenticated.pp-rtl .pp-footer {
  margin-right: var(--pp-sidebar-width);
  margin-left: 0;
}

body.pp-authenticated.pp-rtl .pp-topbar-heading {
  padding-right: 13px;
  padding-left: 0;
  border-right: 3px solid var(--pp-magenta);
  border-left: 0;
}

body.pp-authenticated.pp-rtl .pp-sidebar-menu-icon {
  margin-right: 0;
  margin-left: 9px;
}

@media (max-width: 991px) {

  body.pp-authenticated.pp-rtl .pp-topbar {
    right: 0;
  }

  body.pp-authenticated.pp-rtl .pp-main,
  body.pp-authenticated.pp-rtl .pp-footer {
    margin-right: 0;
  }
}


/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {

  body.pp-authenticated .pp-sidebar,
  body.pp-authenticated .pp-sidebar-backdrop,
  body.pp-authenticated .pp-sidebar-menu > li > a {
    transition: none !important;
  }
}

/* =========================================================
   FOOTER — BRAND + 4 COLUMNS
   Bootstrap 3.3.7
   ========================================================= */

.tk-footer .tk-footer-top > .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.tk-footer .tk-footer-top > .row > [class*="col-"] {
  float: none;
}

/* Desktop: 4 + 2 + 2 + 2 + 2 = 12 */
@media (min-width: 992px) {
  .tk-footer .tk-footer-top .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .tk-footer .tk-footer-top .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
}

/* Tablet: Brand full width, link columns 2 per row */
@media (min-width: 768px) and (max-width: 991px) {
  .tk-footer .tk-footer-top .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .tk-footer .tk-footer-top .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 26px;
  }
}

/* Mobile: 2 columns */
@media (max-width: 767px) {
  .tk-footer .tk-footer-top .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 26px;
  }

  .tk-footer .tk-footer-top .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 24px;
  }
}

/* Small mobile: 1 column */
@media (max-width: 479px) {
  .tk-footer .tk-footer-top .col-xs-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}