@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 .fwhg-premium-block, .tc-wp-content-root .fwhg-premium-block *{
  box-sizing: border-box;
}.tc-wp-content-root .fwhg-premium-block{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #241821;
  background: #fff;
}.tc-wp-content-root .fwhg-premium-block .fwhg-section, .tc-wp-content-root .fwhg-premium-block .fwhg-container, .tc-wp-content-root .fwhg-premium-block .fwhg-grid, .tc-wp-content-root .fwhg-premium-block .fwhg-card{
  max-width: 100%;
}.tc-wp-content-root .fwhg-premium-block .fwhg-section{
  width: 100%;
  padding: 92px 22px;
  overflow: hidden;
}.tc-wp-content-root .fwhg-premium-block .fwhg-section-white{
  background: #fff;
}.tc-wp-content-root .fwhg-premium-block .fwhg-section-warm{
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 184, 107, 0.24), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(205, 117, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #fff7ef 0%, #fff1f5 48%, #f8f1ff 100%);
}.tc-wp-content-root .fwhg-premium-block .fwhg-container{
  width: min(1320px, 100%);
  margin: 0 auto;
}.tc-wp-content-root .fwhg-premium-block .fwhg-section-head{
  width: min(820px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}.tc-wp-content-root .fwhg-premium-block h2{
  margin: 0;
  font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  line-height: 1.15;
  letter-spacing: 0;
  color: #221623;
  font-weight: 820;
  overflow-wrap: anywhere;
  word-break: break-word;
}.tc-wp-content-root .fwhg-premium-block .fwhg-gradient-keyword{
  background: linear-gradient(115deg, #ff8a3d 0%, #ff5f7d 42%, #9b5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}.tc-wp-content-root .fwhg-premium-block .fwhg-section-head p{
  margin: 16px auto 0;
  color: #6b5a66;
  font-size: 1.06rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}.tc-wp-content-root .fwhg-premium-block .fwhg-grid{
  display: grid;
  width: 100%;
  gap: 24px;
}.tc-wp-content-root .fwhg-premium-block .fwhg-grid-four{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}.tc-wp-content-root .fwhg-premium-block .fwhg-grid-three{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}.tc-wp-content-root .fwhg-premium-block .fwhg-card{
  --fg-accent: #ff8750;
  --fg-accent-2: #ff5f8f;
  --fg-soft: rgba(255, 135, 80, 0.12);
  --fg-mx: 50%;
  --fg-my: 0%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;

  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(117, 82, 104, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 244, 0.9));
  box-shadow: 0 18px 45px rgba(87, 50, 69, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}.tc-wp-content-root .fwhg-premium-block .fwhg-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--fg-soft), transparent 44%),
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.84), transparent 22%);
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 0.35s ease;
}.tc-wp-content-root .fwhg-premium-block .fwhg-card::after{
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fg-accent), var(--fg-accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}.tc-wp-content-root .fwhg-premium-block .fwhg-card.is-visible{
  opacity: 1;
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(0);
}.tc-wp-content-root .fwhg-premium-block .fwhg-card:hover{
  border-color: color-mix(in srgb, var(--fg-accent) 46%, transparent);
  box-shadow: 0 24px 68px rgba(95, 49, 75, 0.16);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}.tc-wp-content-root .fwhg-premium-block .fwhg-card:hover::after{
  transform: scaleX(1);
}.tc-wp-content-root .fwhg-premium-block .fwhg-icon, .tc-wp-content-root .fwhg-premium-block .fwhg-card h3, .tc-wp-content-root .fwhg-premium-block .fwhg-card p, .tc-wp-content-root .fwhg-premium-block .fwhg-card-cta, .tc-wp-content-root .fwhg-premium-block .fwhg-step-badge{
  position: relative;
  z-index: 1;
}.tc-wp-content-root .fwhg-premium-block .fwhg-icon{
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--fg-accent);
  background: linear-gradient(135deg, #fff, var(--fg-soft));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 12px 26px rgba(95, 49, 75, 0.09);
  font-size: 1.28rem;
  transition: transform 0.35s ease, color 0.35s ease, background 0.35s ease;
}.tc-wp-content-root .fwhg-premium-block .fwhg-card:hover .fwhg-icon{
  color: #fff;
  background: linear-gradient(135deg, var(--fg-accent), var(--fg-accent-2));
  transform: translateY(-4px) rotate(-3deg) scale(1.04);
}.tc-wp-content-root .fwhg-premium-block .fwhg-card h3{
  margin: 22px 0 0;
  color: #261622;
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 780;
  overflow-wrap: anywhere;
  word-break: break-word;
}.tc-wp-content-root .fwhg-premium-block .fwhg-card h3::after{
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--fg-accent), var(--fg-accent-2));
  transform: scaleX(0.55);
  transform-origin: left;
  transition: transform 0.35s ease;
}.tc-wp-content-root .fwhg-premium-block .fwhg-card:hover h3::after{
  transform: scaleX(1.35);
}.tc-wp-content-root .fwhg-premium-block .fwhg-card p{
  margin: 14px 0 0;
  color: #6a5864;
  font-size: 0.96rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}.tc-wp-content-root .fwhg-premium-block .fwhg-card-cta{
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--fg-accent);
  font-size: 0.9rem;
  font-weight: 740;
  opacity: 0.3;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}.tc-wp-content-root .fwhg-premium-block .fwhg-card:hover .fwhg-card-cta{
  opacity: 1;
  transform: translateY(0);
  color: var(--fg-accent-2);
}.tc-wp-content-root .fwhg-premium-block .fwhg-tilt-card:hover{
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-8px);
}.tc-wp-content-root .fwhg-premium-block .fwhg-process-card{
  padding-top: 62px;
}.tc-wp-content-root .fwhg-premium-block .fwhg-step-badge{
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 34px;
  max-width: 100%;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--fg-accent), var(--fg-accent-2));
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(111, 60, 88, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}.tc-wp-content-root .fwhg-premium-block .fwhg-process-card:hover .fwhg-step-badge{
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 14px 30px rgba(111, 60, 88, 0.22);
}.tc-wp-content-root .fwhg-premium-block .fwhg-card:nth-child(1){ --fg-accent: #ff884d; --fg-accent-2: #ff5d72; --fg-soft: rgba(255, 136, 77, 0.13); }.tc-wp-content-root .fwhg-premium-block .fwhg-card:nth-child(2){ --fg-accent: #f76da8; --fg-accent-2: #9b5cff; --fg-soft: rgba(247, 109, 168, 0.13); }.tc-wp-content-root .fwhg-premium-block .fwhg-card:nth-child(3){ --fg-accent: #e9a625; --fg-accent-2: #ff6f61; --fg-soft: rgba(233, 166, 37, 0.14); }.tc-wp-content-root .fwhg-premium-block .fwhg-card:nth-child(4){ --fg-accent: #b56cff; --fg-accent-2: #ff7aa2; --fg-soft: rgba(181, 108, 255, 0.13); }.tc-wp-content-root .fwhg-premium-block .fwhg-card:nth-child(5){ --fg-accent: #fb6f55; --fg-accent-2: #f3b640; --fg-soft: rgba(251, 111, 85, 0.13); }.tc-wp-content-root .fwhg-premium-block .fwhg-card:nth-child(6){ --fg-accent: #d86bd6; --fg-accent-2: #ff8d4a; --fg-soft: rgba(216, 107, 214, 0.12); }.tc-wp-content-root .fwhg-premium-block .fwhg-card:nth-child(7){ --fg-accent: #ff7096; --fg-accent-2: #ffb347; --fg-soft: rgba(255, 112, 150, 0.13); }.tc-wp-content-root .fwhg-premium-block .fwhg-card:nth-child(8){ --fg-accent: #8f6bff; --fg-accent-2: #ff8a5c; --fg-soft: rgba(143, 107, 255, 0.12); }@media (min-width: 1024px) and (max-width: 1199px) {.tc-wp-content-root .fwhg-premium-block .fwhg-section{ padding: 78px 20px; }.tc-wp-content-root .fwhg-premium-block .fwhg-grid-four, .tc-wp-content-root .fwhg-premium-block .fwhg-grid-three{ grid-template-columns: repeat(3, minmax(0, 1fr)); }.tc-wp-content-root .fwhg-premium-block .fwhg-grid{ gap: 22px; }.tc-wp-content-root .fwhg-premium-block .fwhg-card{ padding: 25px; }.tc-wp-content-root .fwhg-premium-block .fwhg-section-head p{ font-size: 1rem; }}@media (min-width: 768px) and (max-width: 1023px) {.tc-wp-content-root .fwhg-premium-block .fwhg-section{ padding: 66px 18px; }.tc-wp-content-root .fwhg-premium-block .fwhg-section-head{ margin-bottom: 32px; }.tc-wp-content-root .fwhg-premium-block .fwhg-grid-four, .tc-wp-content-root .fwhg-premium-block .fwhg-grid-three{ grid-template-columns: repeat(2, minmax(0, 1fr)); }.tc-wp-content-root .fwhg-premium-block .fwhg-grid{ gap: 18px; }.tc-wp-content-root .fwhg-premium-block .fwhg-card{ min-height: 240px; padding: 24px; }.tc-wp-content-root .fwhg-premium-block .fwhg-card h3{ font-size: 1.02rem; }.tc-wp-content-root .fwhg-premium-block .fwhg-card p{ font-size: 0.93rem; }}@media (min-width: 430px) and (max-width: 767px) {.tc-wp-content-root .fwhg-premium-block .fwhg-section{ padding: 52px 16px; }.tc-wp-content-root .fwhg-premium-block .fwhg-grid-four, .tc-wp-content-root .fwhg-premium-block .fwhg-grid-three{ grid-template-columns: 1fr !important; }.tc-wp-content-root .fwhg-premium-block .fwhg-grid{ gap: 16px; }.tc-wp-content-root .fwhg-premium-block .fwhg-section-head{ margin-bottom: 28px; }.tc-wp-content-root .fwhg-premium-block .fwhg-section-head p{ font-size: 0.94rem; }.tc-wp-content-root .fwhg-premium-block .fwhg-card{ min-height: auto; padding: 22px; border-radius: 20px; }.tc-wp-content-root .fwhg-premium-block .fwhg-process-card{ padding-top: 58px; }}@media (min-width: 375px) and (max-width: 429px) {.tc-wp-content-root .fwhg-premium-block .fwhg-section{ padding: 46px 14px; }.tc-wp-content-root .fwhg-premium-block .fwhg-grid-four, .tc-wp-content-root .fwhg-premium-block .fwhg-grid-three{ grid-template-columns: 1fr !important; }.tc-wp-content-root .fwhg-premium-block .fwhg-grid{ gap: 14px; }.tc-wp-content-root .fwhg-premium-block .fwhg-section-head p{ font-size: 0.9rem; line-height: 1.62; }.tc-wp-content-root .fwhg-premium-block .fwhg-card{ min-height: auto; padding: 20px; border-radius: 18px; }.tc-wp-content-root .fwhg-premium-block .fwhg-icon{ width: 48px; height: 48px; border-radius: 16px; font-size: 1.12rem; }.tc-wp-content-root .fwhg-premium-block .fwhg-card h3{ font-size: 1rem; }.tc-wp-content-root .fwhg-premium-block .fwhg-card p{ font-size: 0.9rem; }.tc-wp-content-root .fwhg-premium-block .fwhg-step-badge{ width: 40px; height: 31px; top: 18px; right: 18px; }}@media (max-width: 374px) {.tc-wp-content-root .fwhg-premium-block .fwhg-section{ padding: 40px 12px; }.tc-wp-content-root .fwhg-premium-block .fwhg-grid-four, .tc-wp-content-root .fwhg-premium-block .fwhg-grid-three{ grid-template-columns: 1fr !important; }.tc-wp-content-root .fwhg-premium-block .fwhg-grid{ gap: 12px; }.tc-wp-content-root .fwhg-premium-block .fwhg-section-head{ margin-bottom: 24px; }.tc-wp-content-root .fwhg-premium-block .fwhg-section-head p{ font-size: 0.86rem; line-height: 1.58; }.tc-wp-content-root .fwhg-premium-block .fwhg-card{ min-height: auto; padding: 18px; border-radius: 17px; }.tc-wp-content-root .fwhg-premium-block .fwhg-process-card{ padding-top: 54px; }.tc-wp-content-root .fwhg-premium-block .fwhg-icon{ width: 44px; height: 44px; border-radius: 15px; font-size: 1rem; }.tc-wp-content-root .fwhg-premium-block .fwhg-card h3{ margin-top: 18px; font-size: 0.96rem; }.tc-wp-content-root .fwhg-premium-block .fwhg-card p{ font-size: 0.86rem; line-height: 1.55; }.tc-wp-content-root .fwhg-premium-block .fwhg-card-cta{ font-size: 0.84rem; }.tc-wp-content-root .fwhg-premium-block .fwhg-step-badge{ width: 38px; height: 29px; top: 17px; right: 17px; font-size: 0.76rem; }}@media (prefers-reduced-motion: reduce) {.tc-wp-content-root .fwhg-premium-block .fwhg-card, .tc-wp-content-root .fwhg-premium-block .fwhg-card::after, .tc-wp-content-root .fwhg-premium-block .fwhg-icon, .tc-wp-content-root .fwhg-premium-block .fwhg-card-cta, .tc-wp-content-root .fwhg-premium-block .fwhg-step-badge, .tc-wp-content-root .fwhg-premium-block .fwhg-card h3::after{
    transition: none !important;
  }.tc-wp-content-root .fwhg-premium-block .fwhg-card, .tc-wp-content-root .fwhg-premium-block .fwhg-card.is-visible, .tc-wp-content-root .fwhg-premium-block .fwhg-card:hover{
    opacity: 1;
    transform: none !important;
  }}

.tc-wp-content-root .fwhg-reveal {}