@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 .tug-wrap,
.tc-wp-content-root .tug-wrap * {
  box-sizing: border-box;
}

.tc-wp-content-root .tug-wrap {
  --tug-ink: #15131f;
  --tug-muted: #686273;
  --tug-line: rgba(67, 48, 103, 0.14);
  --tug-cream: #fff7ef;
  --tug-warm: #fff3e6;
  --tug-coral: #ff6b54;
  --tug-gold: #f5a524;
  --tug-plum: #7c3aed;
  --tug-rose: #e84a7a;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--tug-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tc-wp-content-root .tug-wrap section,
.tc-wp-content-root .tug-wrap .tug-container,
.tc-wp-content-root .tug-wrap .tug-grid {
  width: 100%;
  max-width: 100%;
}

.tc-wp-content-root .tug-wrap .tug-section {
  position: relative;
  padding: 88px 22px;
  overflow: hidden;
}

.tc-wp-content-root .tug-wrap .tug-section-white {
  background: #fff;
}

.tc-wp-content-root .tug-wrap .tug-section-warm {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 107, 84, 0.14), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(245, 165, 36, 0.16), transparent 34%),
    linear-gradient(180deg, #fff8f0 0%, #fff2e3 100%);
}

.tc-wp-content-root .tug-wrap .tug-container {
  max-width: 1220px;
  margin: 0 auto;
}

.tc-wp-content-root .tug-wrap .tug-section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.tc-wp-content-root .tug-wrap .tug-section-head h2 {
  margin: 0;
  color: var(--tug-ink);
  font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  line-height: 1.16;
  font-weight: 850;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tc-wp-content-root .tug-wrap .tug-section-head h2 span {
  background: linear-gradient(135deg, var(--tug-coral), var(--tug-gold) 48%, var(--tug-plum));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tc-wp-content-root .tug-wrap .tug-section-head p {
  margin: 14px auto 0;
  color: var(--tug-muted);
  font-size: 1.04rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tc-wp-content-root .tug-wrap .tug-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.tc-wp-content-root .tug-wrap .tug-card {
  --fg-mx: 50%;
  --fg-my: 20%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --tug-card-a: #ff6b54;
  --tug-card-b: #f5a524;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--tug-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.92), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 240, 0.86));
  box-shadow: 0 18px 42px rgba(41, 30, 63, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(0);
  opacity: 1;
  transition:
    transform 420ms ease,
    opacity 520ms ease,
    box-shadow 320ms ease,
    border-color 320ms ease,
    background 320ms ease;
  overflow: hidden;
  isolation: isolate;
}

.tc-wp-content-root .tug-wrap .tug-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--tug-card-a) 13%, transparent), transparent 42%),
    radial-gradient(circle at 85% 8%, color-mix(in srgb, var(--tug-card-b) 18%, transparent), transparent 30%);
  opacity: 0.72;
  pointer-events: none;
  z-index: -1;
}

.tc-wp-content-root .tug-wrap .tug-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--tug-card-a) 20%, transparent), transparent 34%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
  z-index: -1;
}

.tc-wp-content-root .tug-wrap .tug-card.tug-visible {
  opacity: 1;
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(0);
}

.tc-wp-content-root .tug-wrap .tug-card:hover {
  border-color: color-mix(in srgb, var(--tug-card-a) 38%, rgba(67, 48, 103, 0.18));
  box-shadow: 0 24px 58px rgba(41, 30, 63, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.tc-wp-content-root .tug-wrap .tug-card:hover::after {
  opacity: 1;
}

.tc-wp-content-root .tug-wrap .tug-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  max-width: 100%;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--tug-card-a) 13%, #fff), #fff);
  color: var(--tug-card-a);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 12px 26px rgba(41, 30, 63, 0.08);
  transition: transform 320ms ease, color 320ms ease, background 320ms ease;
}

.tc-wp-content-root .tug-wrap .tug-icon i {
  font-size: 1.22rem;
  line-height: 1;
}

.tc-wp-content-root .tug-wrap .tug-card:hover .tug-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--tug-card-a), var(--tug-card-b));
  transform: translateY(-3px) rotate(-4deg) scale(1.04);
}

.tc-wp-content-root .tug-wrap .tug-card h3 {
  position: relative;
  margin: 0 0 12px;
  padding-bottom: 12px;
  color: var(--tug-ink);
  font-size: 1.08rem;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tc-wp-content-root .tug-wrap .tug-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tug-card-a), var(--tug-card-b));
  transition: width 320ms ease;
}

.tc-wp-content-root .tug-wrap .tug-card:hover h3::after {
  width: 74px;
}

.tc-wp-content-root .tug-wrap .tug-card p {
  margin: 0;
  color: var(--tug-muted);
  font-size: 0.96rem;
  line-height: 1.66;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tc-wp-content-root .tug-wrap .tug-cta {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--tug-card-a);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
  opacity: 0.3;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 320ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tc-wp-content-root .tug-wrap .tug-card:hover .tug-cta {
  opacity: 1;
  transform: translateY(0);
}

.tc-wp-content-root .tug-wrap .tug-grid-tilt .tug-card {
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.94), transparent 25%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 246, 235, 0.92));
}

.tc-wp-content-root .tug-wrap .tug-process-card {
  min-height: 272px;
}

.tc-wp-content-root .tug-wrap .tug-process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 16px;
  top: 6px;
  color: color-mix(in srgb, var(--tug-card-a) 20%, transparent);
  font-size: 5.8rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 320ms ease, opacity 320ms ease;
  z-index: -1;
}

.tc-wp-content-root .tug-wrap .tug-process-card:hover::before {
  transform: translateY(-5px) scale(1.04);
  opacity: 0.85;
}

.tc-wp-content-root .tug-wrap .tug-step-inline {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--tug-card-a) 76%, #33253f);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tc-wp-content-root .tug-wrap .tug-card:nth-child(1) {
  --tug-card-a: #ff6b54;
  --tug-card-b: #f5a524;
}

.tc-wp-content-root .tug-wrap .tug-card:nth-child(2) {
  --tug-card-a: #7c3aed;
  --tug-card-b: #ff6b54;
}

.tc-wp-content-root .tug-wrap .tug-card:nth-child(3) {
  --tug-card-a: #0ea5e9;
  --tug-card-b: #f5a524;
}

.tc-wp-content-root .tug-wrap .tug-card:nth-child(4) {
  --tug-card-a: #e84a7a;
  --tug-card-b: #7c3aed;
}

.tc-wp-content-root .tug-wrap .tug-card:nth-child(5) {
  --tug-card-a: #16a085;
  --tug-card-b: #f5a524;
}

.tc-wp-content-root .tug-wrap .tug-card:nth-child(6) {
  --tug-card-a: #ef4444;
  --tug-card-b: #fb923c;
}

.tc-wp-content-root .tug-wrap .tug-card:nth-child(7) {
  --tug-card-a: #6366f1;
  --tug-card-b: #22c55e;
}

.tc-wp-content-root .tug-wrap .tug-card:nth-child(8) {
  --tug-card-a: #d946ef;
  --tug-card-b: #f59e0b;
}

@media (min-width: 1200px) {
  .tc-wp-content-root .tug-wrap .tug-section {
    padding: 96px 28px;
  }

  .tc-wp-content-root .tug-wrap .tug-container {
    max-width: 1220px;
  }

  .tc-wp-content-root .tug-wrap .tug-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .tc-wp-content-root .tug-wrap .tug-section {
    padding: 82px 24px;
  }

  .tc-wp-content-root .tug-wrap .tug-container {
    max-width: 980px;
  }

  .tc-wp-content-root .tug-wrap .tug-section-head p {
    font-size: 1rem;
  }

  .tc-wp-content-root .tug-wrap .tug-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .tc-wp-content-root .tug-wrap .tug-card {
    padding: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tc-wp-content-root .tug-wrap .tug-section {
    padding: 70px 20px;
  }

  .tc-wp-content-root .tug-wrap .tug-section-head {
    margin-bottom: 30px;
  }

  .tc-wp-content-root .tug-wrap .tug-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .tc-wp-content-root .tug-wrap .tug-card {
    padding: 23px;
  }

  .tc-wp-content-root .tug-wrap .tug-card h3 {
    font-size: 1.03rem;
  }

  .tc-wp-content-root .tug-wrap .tug-card p {
    font-size: 0.94rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .tc-wp-content-root .tug-wrap .tug-section {
    padding: 58px 16px;
  }

  .tc-wp-content-root .tug-wrap .tug-section-head {
    margin-bottom: 26px;
  }

  .tc-wp-content-root .tug-wrap .tug-section-head p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .tc-wp-content-root .tug-wrap .tug-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .tc-wp-content-root .tug-wrap .tug-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 22px;
  }

  .tc-wp-content-root .tug-wrap .tug-cta {
    white-space: normal;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .tc-wp-content-root .tug-wrap .tug-section {
    padding: 50px 14px;
  }

  .tc-wp-content-root .tug-wrap .tug-section-head {
    margin-bottom: 24px;
  }

  .tc-wp-content-root .tug-wrap .tug-section-head p {
    font-size: 0.92rem;
  }

  .tc-wp-content-root .tug-wrap .tug-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .tc-wp-content-root .tug-wrap .tug-card {
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .tc-wp-content-root .tug-wrap .tug-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    margin-bottom: 18px;
  }

  .tc-wp-content-root .tug-wrap .tug-process-card::before {
    font-size: 4.8rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .tc-wp-content-root .tug-wrap .tug-section {
    padding: 44px 12px;
  }

  .tc-wp-content-root .tug-wrap .tug-section-head {
    margin-bottom: 22px;
  }

  .tc-wp-content-root .tug-wrap .tug-section-head p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .tc-wp-content-root .tug-wrap .tug-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .tc-wp-content-root .tug-wrap .tug-card {
    min-height: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .tc-wp-content-root .tug-wrap .tug-card h3 {
    font-size: 0.98rem;
  }

  .tc-wp-content-root .tug-wrap .tug-card p,
  .tc-wp-content-root .tug-wrap .tug-cta {
    font-size: 0.88rem;
  }

  .tc-wp-content-root .tug-wrap .tug-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    margin-bottom: 16px;
  }

  .tc-wp-content-root .tug-wrap .tug-icon i {
    font-size: 1.04rem;
  }

  .tc-wp-content-root .tug-wrap .tug-process-card::before {
    right: 10px;
    font-size: 4.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tc-wp-content-root .tug-wrap .tug-card,
  .tc-wp-content-root .tug-wrap .tug-card::after,
  .tc-wp-content-root .tug-wrap .tug-card h3::after,
  .tc-wp-content-root .tug-wrap .tug-icon,
  .tc-wp-content-root .tug-wrap .tug-cta,
  .tc-wp-content-root .tug-wrap .tug-process-card::before {
    transition: none !important;
  }

  .tc-wp-content-root .tug-wrap .tug-card,
  .tc-wp-content-root .tug-wrap .tug-card.tug-visible,
  .tc-wp-content-root .tug-wrap .tug-card:hover {
    transform: none !important;
    opacity: 1;
  }
}

.tc-wp-content-root .tug-process-grid {}

.tc-wp-content-root .tug-reveal {}