@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/* tc-scoped:tc-wp-content-root */

.tc-wp-content-root {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flow-root;
  isolation: isolate;
  position: relative;
}
.tc-wp-content-root img,
.tc-wp-content-root video,
.tc-wp-content-root svg,
.tc-wp-content-root iframe {
  max-width: 100%;
  height: auto;
}

.tc-wp-content-root .cug-premium-content, .tc-wp-content-root .cug-premium-content *{
  box-sizing: border-box;
}.tc-wp-content-root .cug-premium-content{
  --cug-ink: #1b1726;
  --cug-muted: #6f687c;
  --cug-line: rgba(121, 86, 255, 0.14);
  --cug-shadow: 0 18px 48px rgba(44, 30, 82, 0.1);
  --cug-shadow-hover: 0 26px 72px rgba(44, 30, 82, 0.18);
  --cug-radius: 24px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--cug-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}.tc-wp-content-root .cug-premium-section{
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 92px 24px;
}.tc-wp-content-root .cug-premium-section--white{
  background: #fff;
}.tc-wp-content-root .cug-premium-section--warm{
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 145, 77, 0.13), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(121, 86, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #fff7f0 0%, #fffaf7 48%, #fff4eb 100%);
}.tc-wp-content-root .cug-premium-container{
  width: min(1240px, 100%);
  max-width: 100%;
  margin: 0 auto;
}.tc-wp-content-root .cug-premium-heading{
  width: min(780px, 100%);
  max-width: 100%;
  margin: 0 auto 42px;
  text-align: center;
}.tc-wp-content-root .cug-premium-heading h2{
  margin: 0;
  color: var(--cug-ink);
  font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  line-height: 1.14;
  letter-spacing: 0;
  font-weight: 820;
  overflow-wrap: anywhere;
  word-break: break-word;
}.tc-wp-content-root .cug-premium-heading h2 span{
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, #ff7a3d 0%, #c64cff 48%, #5c6cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}.tc-wp-content-root .cug-premium-heading p{
  margin: 14px auto 0;
  color: var(--cug-muted);
  font-size: 1.02rem;
  line-height: 1.72;
  overflow-wrap: anywhere;
  word-break: break-word;
}.tc-wp-content-root .cug-premium-grid{
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}.tc-wp-content-root .cug-premium-card{
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --cug-accent: #7c5cff;
  --cug-accent-2: #ff8a4c;
  --cug-soft: rgba(124, 92, 255, 0.1);
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 252px;
  padding: 26px;
  border: 1px solid var(--cug-line);
  border-radius: var(--cug-radius);
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.95), transparent 0 132px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 246, 0.86));
  box-shadow: var(--cug-shadow);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  overflow: hidden;
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}.tc-wp-content-root .cug-premium-card::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--cug-accent) 24%, transparent), transparent 32%),
    linear-gradient(135deg, color-mix(in srgb, var(--cug-accent) 9%, transparent), color-mix(in srgb, var(--cug-accent-2) 8%, transparent));
  opacity: 0.78;
  transition: opacity 260ms ease;
}.tc-wp-content-root .cug-premium-card::after{
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--cug-accent) 54%, transparent), transparent);
  opacity: 0;
  transition: opacity 260ms ease;
}.tc-wp-content-root .cug-premium-card.is-visible{
  opacity: 1;
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(0);
}.tc-wp-content-root .cug-premium-card:hover{
  border-color: color-mix(in srgb, var(--cug-accent) 42%, transparent);
  box-shadow: var(--cug-shadow-hover);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-6px);
}.tc-wp-content-root .cug-premium-card:hover::before{
  opacity: 1;
}.tc-wp-content-root .cug-premium-card:hover::after{
  opacity: 1;
}.tc-wp-content-root .cug-premium-icon{
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  max-width: 100%;
  margin: 0 0 20px;
  border-radius: 18px;
  color: var(--cug-accent);
  background: linear-gradient(135deg, #fff, var(--cug-soft));
  border: 1px solid color-mix(in srgb, var(--cug-accent) 18%, transparent);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--cug-accent) 13%, transparent);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease, border-color 260ms ease;
}.tc-wp-content-root .cug-premium-icon i{
  font-size: 1.2rem;
  line-height: 1;
}.tc-wp-content-root .cug-premium-card:hover .cug-premium-icon{
  color: #fff;
  background: linear-gradient(135deg, var(--cug-accent), var(--cug-accent-2));
  border-color: color-mix(in srgb, var(--cug-accent) 46%, transparent);
  transform: translateY(-3px) scale(1.04) rotate(-2deg);
}.tc-wp-content-root .cug-premium-card h3{
  position: relative;
  margin: 0;
  padding: 0 0 12px;
  color: var(--cug-ink);
  font-size: 1.08rem;
  line-height: 1.32;
  letter-spacing: 0;
  font-weight: 760;
  overflow-wrap: anywhere;
  word-break: break-word;
}.tc-wp-content-root .cug-premium-card h3::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cug-accent), var(--cug-accent-2));
  transition: width 260ms ease;
}.tc-wp-content-root .cug-premium-card:hover h3::after{
  width: 86px;
}.tc-wp-content-root .cug-premium-card p{
  margin: 14px 0 0;
  color: var(--cug-muted);
  font-size: 0.94rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}.tc-wp-content-root .cug-premium-cta{
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  color: var(--cug-accent);
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 760;
  opacity: 0.18;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease, color 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}.tc-wp-content-root .cug-premium-card--cta:hover .cug-premium-cta{
  opacity: 1;
  transform: translateY(0);
  color: color-mix(in srgb, var(--cug-accent) 84%, #2a2238);
}.tc-wp-content-root .cug-premium-grid--tilt .cug-premium-card:hover{
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}.tc-wp-content-root .cug-premium-process-card{
  min-height: 274px;
}.tc-wp-content-root .cug-premium-process-card::before{
  content: var(--cug-step);
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: -1;
  color: color-mix(in srgb, var(--cug-accent) 10%, transparent);
  font-size: clamp(3.4rem, 8vw, 5.2rem);
  line-height: 1;
  font-weight: 900;
  transition: transform 320ms ease, color 320ms ease;
}.tc-wp-content-root .cug-premium-process-card:hover::before{
  color: color-mix(in srgb, var(--cug-accent) 18%, transparent);
  transform: translateY(-5px) scale(1.04);
}.tc-wp-content-root .cug-premium-step{
  display: inline-block;
  max-width: 100%;
  margin: 0 0 14px;
  color: color-mix(in srgb, var(--cug-accent) 86%, #1b1726);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: transform 260ms ease;
}.tc-wp-content-root .cug-premium-process-card:hover .cug-premium-step{
  transform: translateX(3px);
}.tc-wp-content-root .cug-premium-card:nth-child(1){ --cug-accent: #7c5cff; --cug-accent-2: #ff8a4c; --cug-soft: rgba(124, 92, 255, 0.1); }.tc-wp-content-root .cug-premium-card:nth-child(2){ --cug-accent: #0f9f8f; --cug-accent-2: #6bd6c9; --cug-soft: rgba(15, 159, 143, 0.1); }.tc-wp-content-root .cug-premium-card:nth-child(3){ --cug-accent: #e14f86; --cug-accent-2: #ffb15c; --cug-soft: rgba(225, 79, 134, 0.1); }.tc-wp-content-root .cug-premium-card:nth-child(4){ --cug-accent: #4d72f5; --cug-accent-2: #9b5cff; --cug-soft: rgba(77, 114, 245, 0.1); }.tc-wp-content-root .cug-premium-card:nth-child(5){ --cug-accent: #d97706; --cug-accent-2: #f5b041; --cug-soft: rgba(217, 119, 6, 0.1); }.tc-wp-content-root .cug-premium-card:nth-child(6){ --cug-accent: #13a35f; --cug-accent-2: #8bd450; --cug-soft: rgba(19, 163, 95, 0.1); }.tc-wp-content-root .cug-premium-card:nth-child(7){ --cug-accent: #b246e8; --cug-accent-2: #ff6ba6; --cug-soft: rgba(178, 70, 232, 0.1); }.tc-wp-content-root .cug-premium-card:nth-child(8){ --cug-accent: #2368a2; --cug-accent-2: #3fc0c7; --cug-soft: rgba(35, 104, 162, 0.1); }@media (min-width: 1200px) {.tc-wp-content-root .cug-premium-section{
    padding: 96px 28px;
  }.tc-wp-content-root .cug-premium-container{
    width: min(1240px, 100%);
  }.tc-wp-content-root .cug-premium-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }}@media (min-width: 1024px) and (max-width: 1199px) {.tc-wp-content-root .cug-premium-section{
    padding: 82px 22px;
  }.tc-wp-content-root .cug-premium-container{
    width: min(1040px, 100%);
  }.tc-wp-content-root .cug-premium-heading{
    margin-bottom: 36px;
  }.tc-wp-content-root .cug-premium-heading p{
    font-size: 0.98rem;
  }.tc-wp-content-root .cug-premium-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }.tc-wp-content-root .cug-premium-card{
    padding: 24px;
  }}@media (min-width: 768px) and (max-width: 1023px) {.tc-wp-content-root .cug-premium-section{
    padding: 68px 20px;
  }.tc-wp-content-root .cug-premium-heading{
    margin-bottom: 32px;
  }.tc-wp-content-root .cug-premium-heading p{
    font-size: 0.96rem;
    line-height: 1.65;
  }.tc-wp-content-root .cug-premium-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }.tc-wp-content-root .cug-premium-card{
    min-height: 232px;
    padding: 22px;
  }.tc-wp-content-root .cug-premium-card h3{
    font-size: 1.02rem;
  }.tc-wp-content-root .cug-premium-card p{
    font-size: 0.92rem;
  }}@media (min-width: 430px) and (max-width: 767px) {.tc-wp-content-root .cug-premium-section{
    padding: 54px 16px;
  }.tc-wp-content-root .cug-premium-heading{
    margin-bottom: 28px;
  }.tc-wp-content-root .cug-premium-heading h2{
    font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  }.tc-wp-content-root .cug-premium-heading p{
    font-size: 0.93rem;
    line-height: 1.62;
  }.tc-wp-content-root .cug-premium-grid{
    grid-template-columns: 1fr !important;
    gap: 16px;
  }.tc-wp-content-root .cug-premium-card{
    min-height: auto;
    padding: 21px;
    border-radius: 20px;
  }.tc-wp-content-root .cug-premium-icon{
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }.tc-wp-content-root .cug-premium-cta{
    width: 100%;
  }}@media (min-width: 375px) and (max-width: 429px) {.tc-wp-content-root .cug-premium-section{
    padding: 46px 14px;
  }.tc-wp-content-root .cug-premium-heading{
    margin-bottom: 24px;
  }.tc-wp-content-root .cug-premium-heading h2{
    font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  }.tc-wp-content-root .cug-premium-heading p{
    font-size: 0.9rem;
    line-height: 1.58;
  }.tc-wp-content-root .cug-premium-grid{
    grid-template-columns: 1fr !important;
    gap: 14px;
  }.tc-wp-content-root .cug-premium-card{
    padding: 18px;
    border-radius: 18px;
  }.tc-wp-content-root .cug-premium-icon{
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 15px;
  }.tc-wp-content-root .cug-premium-icon i{
    font-size: 1.06rem;
  }.tc-wp-content-root .cug-premium-card h3{
    font-size: 0.98rem;
  }.tc-wp-content-root .cug-premium-card p{
    font-size: 0.89rem;
    line-height: 1.58;
  }.tc-wp-content-root .cug-premium-card:hover h3::after{
    width: 64px;
  }}@media (min-width: 320px) and (max-width: 374px) {.tc-wp-content-root .cug-premium-section{
    padding: 40px 12px;
  }.tc-wp-content-root .cug-premium-heading{
    margin-bottom: 22px;
  }.tc-wp-content-root .cug-premium-heading h2{
    font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
    line-height: 1.2;
  }.tc-wp-content-root .cug-premium-heading p{
    font-size: 0.86rem;
    line-height: 1.55;
  }.tc-wp-content-root .cug-premium-grid{
    grid-template-columns: 1fr !important;
    gap: 12px;
  }.tc-wp-content-root .cug-premium-card{
    padding: 16px;
    border-radius: 16px;
  }.tc-wp-content-root .cug-premium-icon{
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 14px;
  }.tc-wp-content-root .cug-premium-icon i{
    font-size: 1rem;
  }.tc-wp-content-root .cug-premium-card h3{
    font-size: 0.94rem;
  }.tc-wp-content-root .cug-premium-card p, .tc-wp-content-root .cug-premium-cta{
    font-size: 0.86rem;
    line-height: 1.54;
  }.tc-wp-content-root .cug-premium-step{
    font-size: 0.72rem;
  }}@media (max-width: 767px) {.tc-wp-content-root .cug-premium-content, .tc-wp-content-root .cug-premium-section, .tc-wp-content-root .cug-premium-container, .tc-wp-content-root .cug-premium-grid, .tc-wp-content-root .cug-premium-card{
    max-width: 100%;
    overflow-x: hidden;
  }.tc-wp-content-root .cug-premium-card, .tc-wp-content-root .cug-premium-card *{
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }}@media (prefers-reduced-motion: reduce) {.tc-wp-content-root .cug-premium-card, .tc-wp-content-root .cug-premium-card::before, .tc-wp-content-root .cug-premium-card::after, .tc-wp-content-root .cug-premium-icon, .tc-wp-content-root .cug-premium-cta, .tc-wp-content-root .cug-premium-step, .tc-wp-content-root .cug-premium-process-card::before{
    transition: none !important;
    animation: none !important;
  }.tc-wp-content-root .cug-premium-card, .tc-wp-content-root .cug-premium-card.is-visible, .tc-wp-content-root .cug-premium-card:hover, .tc-wp-content-root .cug-premium-grid--tilt .cug-premium-card:hover{
    transform: none !important;
  }.tc-wp-content-root .cug-premium-card{
    opacity: 1;
  }}

.tc-wp-content-root .cug-premium-grid--process {}